Aidra Driver 1.3.5+68
Aidra Driver - Your path to green energy
Loading...
Searching...
No Matches
home_state.dart
Go to the documentation of this file.
1part of 'home_bloc.dart';
2
3sealed class HomeState extends Equatable {
4 const HomeState();
5
6 @override
7 List<Object> get props => [];
8}
9
10class ScheduleStatusInitial extends HomeState {}
11
12class ScheduleStatusLoading extends HomeState {}
13
14class ScheduleStatusLoaded extends HomeState {
16
17 const ScheduleStatusLoaded({required this.status});
18
19 @override
20 List<Object> get props => [status];
21}
22
25
26 const ScheduleStatusError({required this.failure});
27
28 @override
29 List<Object> get props => [failure];
30}
const HomeState()
override List< Object?> get props
const ScheduleStatusError({required this.failure})
final Failure failure
override List< Object > get props
String get(String locale)
const ScheduleStatusLoaded({required this.status})
abstract class UseCase< Type, Params > props