1
0
mirror of https://github.com/flutter/samples.git synced 2025-11-09 14:28:51 +00:00

google_maps: Tidyup code formatting (#1723)

This commit is contained in:
Brett Morgan
2023-04-06 04:42:39 +10:00
committed by GitHub
parent 1c127bc2c9
commit 68a5f097ce

View File

@@ -50,12 +50,12 @@ class _MyAppState extends State<MyApp> {
zoom: 11.0,
),
markers: {
// ignore: prefer_const_constructors
Marker(
markerId: const MarkerId('Sydney'),
position: const LatLng(-33.86, 151.20),
const Marker(
markerId: MarkerId('Sydney'),
position: LatLng(-33.86, 151.20),
)
}),
},
),
),
);
}