Skip to content
This repository has been archived by the owner on Feb 22, 2023. It is now read-only.

Commit

Permalink
update assert
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Yang committed Jan 21, 2021
1 parent 38d4d5a commit 52dba31
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ class MethodChannelGoogleMapsFlutter extends GoogleMapsFlutterPlatform {
break;
case 'tileOverlay#getTile':
final TileOverlay tileOverlay = _tileOverlays[mapId];
assert(tileOverlay.tileProvider != null);
assert(tileOverlay.tileProvider.getTile != null);
final Tile tile = await tileOverlay.tileProvider.getTile(
call.arguments['x'],
call.arguments['y'],
Expand Down

0 comments on commit 52dba31

Please sign in to comment.