Unhandled Exception: setState() called after dispose(): _myMapView#3604e(lifecycle state: defunct, not mounted, ticker inactive) code example
Example: lifecycle state: defunct, not mounted
void setStateIfMounted(f) {
if (mounted) setState(f);
}
void setStateIfMounted(f) {
if (mounted) setState(f);
}