Aidra Driver 1.3.5+68
Aidra Driver - Your path to green energy
Loading...
Searching...
No Matches
location_selection_event.dart
Go to the documentation of this file.
1part of 'location_selection_bloc.dart';
2
3sealed class LocationSelectionEvent extends Equatable {
5
6 @override
7 List<Object> get props => [];
8}
9
12}
13
15 final LatLng location;
16
17 const UpdateLocationEvent({required this.location});
18
19 @override
20 List<Object> get props => [location];
21}
22
24 final LatLng location;
25
26 const GetAddressFromLocationEvent({required this.location});
27
28 @override
29 List<Object> get props => [location];
30}
31
33 final LatLng location;
35
37 required this.location,
38 required this.address,
39 });
40
41 @override
42 List<Object> get props => [location, address];
43}
44
47}
48
49class ResetLocationSelectionEvent extends LocationSelectionEvent {
51}
const LocationSelectionEvent()
override List< Object?> get props
const UpdateLocationEvent({required this.location})
override List< Object > get props
const ResetLocationSelectionEvent()
const SelectSavedLocationEvent({ required this.location, required this.address, })
class Partner String
String get(String locale)
class UpdateLocationEvent extends LocationSelectionEvent location
sealed class LocationSelectionEvent extends Equatable GetCurrentLocationEvent()
const GetAddressFromLocationEvent({required this.location})
const SelectSavedLocationEvent({ required this.location, required this.address, })
class SelectSavedLocationEvent extends LocationSelectionEvent ConfirmLocationEvent()
abstract class UseCase< Type, Params > props