MobileLifeCycle constructor

const MobileLifeCycle({
  1. Key? key,
  2. required Widget child,
  3. dynamic onAppStarted()?,
  4. dynamic onAppPaused()?,
  5. dynamic onAppResumed()?,
  6. dynamic onAppDispose()?,
})

Implementation

const MobileLifeCycle({
  super.key,
  required this.child,
  this.onAppStarted,
  this.onAppPaused,
  this.onAppResumed,
  this.onAppDispose,
});