14 lines
271 B
Dart
14 lines
271 B
Dart
|
|
sealed class MapEvent {
|
||
|
|
const MapEvent();
|
||
|
|
}
|
||
|
|
|
||
|
|
class MapAssetsInBoundsUpdated extends MapEvent {
|
||
|
|
final List<String> assetRemoteIds;
|
||
|
|
|
||
|
|
const MapAssetsInBoundsUpdated(this.assetRemoteIds);
|
||
|
|
}
|
||
|
|
|
||
|
|
class MapCloseBottomSheet extends MapEvent {
|
||
|
|
const MapCloseBottomSheet();
|
||
|
|
}
|