AsyncValue<T>.error constructor
- Object error,
- {StackTrace? stackTrace}
Creates an AsyncValue in error state.
The parameter error
cannot be null
.
Implementation
// coverage:ignore-start
const factory AsyncValue.error(Object error, {StackTrace? stackTrace}) =
AsyncError<T>;