9 lines
249 B
Dart
9 lines
249 B
Dart
|
import 'package:google_maps_flutter/google_maps_flutter.dart';
|
||
|
import 'package:wonders/assets.dart';
|
||
|
|
||
|
Marker getMapsMarker(LatLng position) => Marker(
|
||
|
markerId: MarkerId('0'),
|
||
|
position: position,
|
||
|
icon: AppBitmaps.mapMarker,
|
||
|
);
|