FlutterCloseAppPage constructor

const FlutterCloseAppPage({
  1. Key? key,
  2. required Widget child,
  3. int interval = 2,
  4. bool condition = true,
  5. VoidCallback? onCloseFailed,
})

Implementation

const FlutterCloseAppPage({
  Key? key,
  required this.child,
  this.interval = 2,
  this.condition = true,
  this.onCloseFailed,
}) : super(key: key);