DialogGuardWrapper constructor

const DialogGuardWrapper({
  1. Key? key,
  2. required bool isChecked(),
  3. required Future<bool> showDialogGuard(
    1. BuildContext
    ),
  4. required Widget child,
  5. Widget? indicaotr,
})

Implementation

const DialogGuardWrapper({
  Key? key,
  required this.isChecked,
  required this.showDialogGuard,
  required this.child,
  this.indicaotr,
}) : super(key: key);