AppLifecycleTracker constructor

const AppLifecycleTracker({
  1. Key? key,
  2. required void didChangeAppState(
    1. AppState state
    ),
  3. required Widget child,
})

Implementation

const AppLifecycleTracker({
  Key? key,
  required this.didChangeAppState,
  required this.child,
}) : super(key: key);