Skip to content

Commit 5200a2e

Browse files
committed
more
1 parent b2ca4fe commit 5200a2e

3 files changed

Lines changed: 5 additions & 6 deletions

File tree

packages/google_maps_flutter/google_maps_flutter_ios_shared_code/example/lib/collision_behavior.dart

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,10 @@ import 'place_marker.dart';
1414
/// Page demonstrating how to use AdvancedMarker's collision behavior.
1515
class AdvancedMarkerCollisionBehaviorPage extends GoogleMapExampleAppPage {
1616
/// Default constructor.
17-
const AdvancedMarkerCollisionBehaviorPage({Key? key, required this.mapId})
17+
const AdvancedMarkerCollisionBehaviorPage({super.key, required this.mapId})
1818
: super(
1919
const Icon(Icons.not_listed_location),
2020
'Advanced marker collision behavior',
21-
key: key,
2221
);
2322

2423
/// Map ID to use for the GoogleMap.

packages/google_maps_flutter/google_maps_flutter_ios_shared_code/example/lib/place_circle.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ import 'example_google_map.dart';
1111
import 'page.dart';
1212

1313
class PlaceCirclePage extends GoogleMapExampleAppPage {
14-
const PlaceCirclePage({Key? key})
15-
: super(const Icon(Icons.linear_scale), 'Place circle', key: key);
14+
const PlaceCirclePage({super.key})
15+
: super(const Icon(Icons.linear_scale), 'Place circle');
1616

1717
@override
1818
Widget build(BuildContext context) {

packages/google_maps_flutter/google_maps_flutter_ios_shared_code/example/lib/place_marker.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ import 'example_google_map.dart';
1616
import 'page.dart';
1717

1818
class PlaceMarkerPage extends GoogleMapExampleAppPage {
19-
const PlaceMarkerPage({Key? key})
20-
: super(const Icon(Icons.place), 'Place marker', key: key);
19+
const PlaceMarkerPage({super.key})
20+
: super(const Icon(Icons.place), 'Place marker');
2121

2222
@override
2323
Widget build(BuildContext context) {

0 commit comments

Comments
 (0)