stopObservingAppLifecycle method
      
void
stopObservingAppLifecycle()
       
    
inherited
    Stop observing app lifecycle events
Implementation
void stopObservingAppLifecycle() {
  if (_observingAppLifecycle) {
    WidgetsBinding.instance.removeObserver(this);
    _observingAppLifecycle = false;
  }
}