GetAppLifecycle constructor

const GetAppLifecycle({
  1. VoidCallback? onResume,
  2. VoidCallback? onPaused,
  3. VoidCallback? onInactive,
  4. VoidCallback? onDetached,
  5. Widget? child,
  6. Key? key,
})

Implementation

const GetAppLifecycle({
  this.onResume,
  this.onPaused,
  this.onInactive,
  this.onDetached,
  this.child,
  Key? key,
}) : super(key: key);