Aidra Driver 1.3.5+68
Aidra Driver - Your path to green energy
Loading...
Searching...
No Matches
notifications_event.dart
Go to the documentation of this file.
1part of 'notifications_bloc.dart';
2
3sealed class NotificationsEvent extends Equatable {
5
6 @override
7 List<Object> get props => [];
8}
9
10class LoadNotificationsEvent extends NotificationsEvent {
11 final int userId;
12
13 const LoadNotificationsEvent({required this.userId});
14
15 @override
16 List<Object> get props => [userId];
17}
sealed class CheckInOutEvent extends Equatable userId
const NotificationsEvent()
override List< Object?> get props
String get(String locale)
const LoadNotificationsEvent({required this.userId})
abstract class UseCase< Type, Params > props