Aidra Driver 1.3.5+68
Aidra Driver - Your path to green energy
Loading...
Searching...
No Matches
notifications_state.dart
Go to the documentation of this file.
1part of 'notifications_bloc.dart';
2
3sealed class NotificationsState extends Equatable {
5
6 @override
7 List<Object> get props => [];
8}
9
10class NotificationsInitial extends NotificationsState {}
11
12
13class NotificationsLoading extends NotificationsState {}
14
16 final List<NotificationEntity> notifications;
17
18 const NotificationsLoaded({required this.notifications});
19
20 @override
21 List<Object> get props => [notifications];
22}
23
26
27 const NotificationsError({required this.failure});
28
29 @override
30 List<Object> get props => [failure];
31}
override List< Object?> get props
const NotificationsState()
override List< Object > get props
const NotificationsError({required this.failure})
String get(String locale)
sealed class NotificationsState extends Equatable notifications
const NotificationsLoaded({required this.notifications})
abstract class UseCase< Type, Params > props