10 lines
294 B
Dart
10 lines
294 B
Dart
part of 'collection_cubit.dart';
|
|
|
|
@freezed
|
|
class CollectionState with _$CollectionState {
|
|
const factory CollectionState.loading() = _Loading;
|
|
const factory CollectionState.data() = _Data;
|
|
const factory CollectionState.empty() = _Empty;
|
|
const factory CollectionState.error() = _Error;
|
|
}
|