From 3d776bdffedb333c1d2003ee540b6f1693ead8a9 Mon Sep 17 00:00:00 2001 From: Ilya Zverev Date: Wed, 29 Jun 2022 16:26:39 +0300 Subject: [PATCH] Fix late initialization error, see #1288 --- lib/src/map/map.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/map/map.dart b/lib/src/map/map.dart index d57d4314e..231206b23 100644 --- a/lib/src/map/map.dart +++ b/lib/src/map/map.dart @@ -22,7 +22,7 @@ class MapControllerImpl implements MapController { _mapEventSink.close(); } - late final MapState _state; + late MapState _state; @override set state(MapState state) {