ScreenLifecycle constructor

const ScreenLifecycle({
  1. Key? key,
  2. VoidCallback? onFocusLost,
  3. VoidCallback? onFocusGained,
  4. required Widget child,
})

Implementation

const ScreenLifecycle({
  Key? key,
  this.onFocusLost,
  this.onFocusGained,
  required this.child,
});