first commit
This commit is contained in:
9
lib/screens/collections/cubit/collection_state.dart
Normal file
9
lib/screens/collections/cubit/collection_state.dart
Normal file
@@ -0,0 +1,9 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user