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.

Inheritance

Constructors

EmptyFailure.new({String message = "", List<String> errors = const []})
Constructs an EmptyFailure with optional message and errors. 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, 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
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