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