Aidra Connect
10.0.2+16
Aidra Connect Mobile Application
Loading...
Searching...
No Matches
collection_requests_history_event.dart
Go to the documentation of this file.
1
part
of
'collection_requests_history_bloc.dart'
;
2
3
sealed
class
CollectionRequestsHistoryEvent
{
4
const
CollectionRequestsHistoryEvent
();
5
}
6
7
final
class
LoadOnGoingCollectionRequestsEvent
8
extends
CollectionRequestsHistoryEvent
{
9
final
String
partnerId
;
10
const
LoadOnGoingCollectionRequestsEvent
({required this.partnerId});
11
}
12
13
final
class
LoadCompletedCollectionRequestsEvent
14
extends
CollectionRequestsHistoryEvent
{
15
final
String?
partnerId
;
16
17
const
LoadCompletedCollectionRequestsEvent
({
18
required this.partnerId,
19
// required this.filter,
20
// this.startDate,
21
// this.endDate,
22
});
23
}
of
static AppLocalizations of(BuildContext context)
Definition
app_localizations.dart:5
CollectionRequestsHistoryEvent
Definition
collection_requests_history_event.dart:3
CollectionRequestsHistoryEvent::CollectionRequestsHistoryEvent
const CollectionRequestsHistoryEvent()
CollectionRequestsHistoryEvent::partnerId
final String partnerId
Definition
collection_requests_history_event.dart:15
CollectionRequestsHistoryEvent::LoadCompletedCollectionRequestsEvent
const LoadCompletedCollectionRequestsEvent({ required this.partnerId, })
partnerId
final num partnerId
Definition
collection_entity.dart:524
LoadOnGoingCollectionRequestsEvent
const LoadOnGoingCollectionRequestsEvent({required this.partnerId})
lib
features
collections
presentation
logic
collection_requests_history_bloc
collection_requests_history_event.dart
Generated by
1.16.1