startObservingAppLifecycle method
void
startObservingAppLifecycle()
Start observing app lifecycle events
Implementation
void startObservingAppLifecycle() {
if (!_observingAppLifecycle && !_disposed) {
WidgetsBinding.instance.addObserver(this);
_observingAppLifecycle = true;
}
}