Aidra Connect 10.0.2+16
Aidra Connect Mobile Application
Loading...
Searching...
No Matches
notifications_state.dart
Go to the documentation of this file.
1part of 'notifications_cubit.dart';
2
3sealed class NotificationsState extends Equatable {
5
6 @override
7 List<Object> get props => [];
8}
9
10final class NotificationsInitial extends NotificationsState {}
11
12final class LoadingNotificationsState extends NotificationsState {}
13
16 const NotificationsLoadingFailureState({required this.failure});
17}
18
20 final List<NotificationEntity> notifications;
21 const NotificationsLoadedState({required this.notifications});
22}
static AppLocalizations of(BuildContext context)
override List< Object?> get props
Definition failures.dart:14
const NotificationsState()
final List< NotificationEntity > notifications
const NotificationsLoadedState({required this.notifications})
sealed class DocumentState extends Equatable failure
const NotificationsLoadingFailureState({required this.failure})