StatefulData<T> class
sealed
Sealed class that holds either loading state, some typed data or error
var statefulData = LoadingData();
statefulData.unwrap(); // throws error
statefulData = ErrorData(error: 'test error');
statefulData.unwrap(); // throws error
statefulData = SuccessData(result: 1);
statefulData.unwrap(); // valid
- Implementers
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
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.
inherited
-
unwrap(
) → T - Returns success data or throws exception if value is not SuccessData
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited