- Bump version to `0.1.7+45` and update SDK constraint to `>=3.8.0 <4.0.0`. - Update numerous dependencies
12 lines
278 B
Dart
12 lines
278 B
Dart
import 'package:freezed_annotation/freezed_annotation.dart';
|
|
|
|
part 'loading_error.freezed.dart';
|
|
|
|
@freezed
|
|
abstract class LoadingError with _$LoadingError {
|
|
const factory LoadingError({
|
|
required String message,
|
|
@Default(false) bool allowRetry,
|
|
}) = _LoadingError;
|
|
}
|