ErrorDetail class
A single field-level validation error within an ErrorResponseModel.
Constructors
- ErrorDetail({required String field, required String message, String? code})
-
const
Properties
- code → String?
-
A machine-readable error code for this specific field error.
final
- field → String
-
The name of the field this error applies to.
final
- hashCode → int
-
The hash code for this object.
no setterinherited
- message → String
-
A human-readable description of the error.
final
-
props
→ List<
Object?> -
The list of properties that will be used to determine whether
two instances are equal.
no setteroverride
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- stringify → bool?
-
If set to
true, the toString method will be overridden to output this instance's props.no setterinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toJson(
) → Map< String, dynamic> -
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Methods
-
tryFromJson(
Map< String, dynamic> json) → ErrorDetail? -
Attempts to parse an ErrorDetail from a single entry in an
ErrorResponseModel's
detailsarray.