dispose method
Dispose the observer
Implementation
@override
void dispose() {
// stop listening to route changes
NavigationObserver().removeListener(this);
// hide overlay
hideOverlay();
WidgetsBinding.instance.removeObserver(this);
super.dispose();
}