mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
12 lines
239 B
Dart
12 lines
239 B
Dart
|
|
sealed class MapEvent {
|
||
|
|
const MapEvent();
|
||
|
|
}
|
||
|
|
|
||
|
|
class MapAssetsInBoundsUpdated extends MapEvent {
|
||
|
|
final List<String> assetRemoteIds;
|
||
|
|
|
||
|
|
const MapAssetsInBoundsUpdated(this.assetRemoteIds);
|
||
|
|
}
|
||
|
|
|
||
|
|
class MapCloseBottomSheet extends MapEvent {}
|