10 lines
350 B
Dart
10 lines
350 B
Dart
|
|
part of 'outlet_loader_bloc.dart';
|
||
|
|
|
||
|
|
@freezed
|
||
|
|
class OutletLoaderState with _$OutletLoaderState {
|
||
|
|
const factory OutletLoaderState.initial() = _Initial;
|
||
|
|
const factory OutletLoaderState.loading() = _Loading;
|
||
|
|
const factory OutletLoaderState.loaded(List<Outlet> outlets) = _Loaded;
|
||
|
|
const factory OutletLoaderState.error(String message) = _Error;
|
||
|
|
}
|