ente/lib/ui/map/map_isolate.dart
2023-06-14 17:11:31 +05:30

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,
});
}