LifeCycleListenerWidget constructor

const LifeCycleListenerWidget({
  1. Key? key,
  2. required Widget child,
  3. Function? onOpen,
  4. Function? onClose,
  5. Function? onPaused,
  6. Function? onPopRoute,
})

Implementation

const LifeCycleListenerWidget(
    {Key? key,
    required this.child,
    this.onOpen,
    this.onClose,
    this.onPaused,
    this.onPopRoute})
    : super(key: key);