Skip to content

Commit 72a57d8

Browse files
renefloormvolpato
andauthored
refactor: update if statements to switch statement
Co-authored-by: Michele Volpato <[email protected]> Signed-off-by: Rene Floor <[email protected]>
1 parent 37f3475 commit 72a57d8

File tree

2 files changed

+15
-17
lines changed

2 files changed

+15
-17
lines changed

packages/platform_maps_flutter_apple/lib/src/apple_maps_widget.dart

+8-8
Original file line numberDiff line numberDiff line change
@@ -205,13 +205,13 @@ class _PlatformMapState extends State<_PlatformMap> {
205205
}
206206

207207
apple_maps.MapType _getMapType() {
208-
if (widget.mapType == MapType.normal) {
209-
return apple_maps.MapType.standard;
210-
} else if (widget.mapType == MapType.satellite) {
211-
return apple_maps.MapType.satellite;
212-
} else if (widget.mapType == MapType.hybrid) {
213-
return apple_maps.MapType.hybrid;
214-
}
215-
return apple_maps.MapType.standard;
208+
switch (widget.mapType) {
209+
case MapType.normal:
210+
return apple_maps.MapType.standard;
211+
case MapType.satellite:
212+
return apple_maps.MapType.satellite;
213+
case MapType.hybrid:
214+
return apple_maps.MapType.hybrid;
215+
}
216216
}
217217
}

packages/platform_maps_flutter_google_android/lib/src/google_maps_widget.dart

+7-9
Original file line numberDiff line numberDiff line change
@@ -209,14 +209,12 @@ class _PlatformMapState extends State<_PlatformMap> {
209209
widget.onLongPress?.call(position.platformLatLng);
210210
}
211211

212-
google_maps.MapType _getGoogleMapType() {
213-
if (widget.mapType == MapType.normal) {
214-
return google_maps.MapType.normal;
215-
} else if (widget.mapType == MapType.satellite) {
216-
return google_maps.MapType.satellite;
217-
} else if (widget.mapType == MapType.hybrid) {
218-
return google_maps.MapType.hybrid;
219-
}
220-
return google_maps.MapType.normal;
212+
switch (widget.mapType) {
213+
case MapType.normal:
214+
return google_maps.MapType.normal;
215+
case MapType.satellite:
216+
return google_maps.MapType.satellite;
217+
case MapType.hybrid:
218+
return google_maps.MapType.hybrid;
221219
}
222220
}

0 commit comments

Comments
 (0)