mirror of
https://github.com/ente-io/ente.git
synced 2025-05-03 04:11:28 +00:00
17 lines
347 B
Dart
17 lines
347 B
Dart
import "dart:isolate";
|
|
|
|
import "package:flutter_map/flutter_map.dart";
|
|
import "package:photos/ui/map/image_marker.dart";
|
|
|
|
class MapIsolate {
|
|
final LatLngBounds bounds;
|
|
final List<ImageMarker> imageMarkers;
|
|
final SendPort sendPort;
|
|
|
|
MapIsolate({
|
|
required this.bounds,
|
|
required this.imageMarkers,
|
|
required this.sendPort,
|
|
});
|
|
}
|