I just upgraded to version 0.13.1 which solved already some LateInitializationErrors.
Unfortunately I just found another one in map.dart.
late final MapState _state;
which is final but can be set to another value again:
set state(MapState state) {
_state = state;
if (!_readyCompleter.isCompleted) {
_readyCompleter.complete();
}
}
I just upgraded to version 0.13.1 which solved already some LateInitializationErrors.
Unfortunately I just found another one in map.dart.
late final MapState _state;which is final but can be set to another value again: