LifeCycleManager constructor
const
LifeCycleManager({
- Key? key,
- required Widget child,
- VoidCallback? onResumed,
- VoidCallback? onPaused,
- VoidCallback? onInactive,
- VoidCallback? onDetached,
- VoidCallback? onHidden,
- bool enableLogging = false,
Implementation
const LifeCycleManager({
super.key,
required this.child,
this.onResumed,
this.onPaused,
this.onInactive,
this.onDetached,
this.onHidden,
this.enableLogging = false,
});