AppScreen constructor

const AppScreen({
  1. required Widget child,
  2. Function? onPush,
  3. Function? onVisible,
  4. Function? onAnalytics,
  5. Function? onActive,
  6. Function? onInactive,
  7. Function? onHide,
  8. Function? onPop,
  9. Key? key,
})

Implementation

const AppScreen(
    {required this.child,
    this.onPush,
    this.onVisible,
    this.onAnalytics,
    this.onActive,
    this.onInactive,
    this.onHide,
    this.onPop,
    Key? key})
    : super(key: key);