dispose method

  1. @override
void dispose()

Dispose the observer

Implementation

@override
void dispose() {
  // stop listening to route changes
  NavigationObserver().removeListener(this);

  // hide overlay
  hideOverlay();

  WidgetsBinding.instance.removeObserver(this);
  super.dispose();
}