disableLifecycle method
void
disableLifecycle()
inherited
Disable lifecycle handling for this channel.
Implementation
void disableLifecycle() {
if (_lifecycleObserver != null) {
WidgetsBinding.instance.removeObserver(_lifecycleObserver!);
_lifecycleObserver = null;
}
}