LoadFailure constructor
const
LoadFailure({
- required LoadFailureReason reason,
- required String? raw,
- Object? error,
- StackTrace? stackTrace,
Creates a failure result.
Implementation
const LoadFailure({
required this.reason,
required this.raw,
this.error,
this.stackTrace,
});