EmptyFailure class
A concrete implementation of Failure that represents an empty or generic failure state.
Typically used when no specific failure type is necessary, or when an operation simply failed without additional context.
Constructors
-
EmptyFailure.new({String message = "", List<
String> errors = const []}) -
Constructs an EmptyFailure with optional
message
anderrors
. Defaults to an empty string and empty list.const
Properties
-
errors
→ List<
String> -
A list of detailed error messages related to the failure.
finalinherited
- hashCode → int
-
The hash code for this object.
no setterinherited
- message → String
-
A general message describing the failure.
finalinherited
-
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
, thetoString
method will be overridden to output this instance'sprops
.no setterinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String - A string representation of this object.
-
trMessage(
) → EmptyFailure -
Returns a copy of this EmptyFailure, useful for message transformation.
override
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited