mirror of
https://github.com/immich-app/immich.git
synced 2025-03-01 15:11:21 +01:00
14 lines
274 B
Dart
14 lines
274 B
Dart
![]() |
// ignore_for_file: add-copy-with
|
||
|
|
||
|
sealed class MapEvent {
|
||
|
const MapEvent();
|
||
|
}
|
||
|
|
||
|
class MapAssetsInBoundsUpdated extends MapEvent {
|
||
|
final List<String> assetRemoteIds;
|
||
|
|
||
|
const MapAssetsInBoundsUpdated(this.assetRemoteIds);
|
||
|
}
|
||
|
|
||
|
class MapCloseBottomSheet extends MapEvent {}
|