OpsWarningScreen constructor

const OpsWarningScreen({
  1. Key? key,
  2. required String message,
  3. required VoidCallback onClosing,
  4. required VoidCallback goBack,
  5. bool canShowGoBackBtn = false,
  6. String title = "Attention !",
  7. required bool hiddeAllBtn,
})

Implementation

const OpsWarningScreen(
    {super.key,
    required this.message,
    required this.onClosing,
    required this.goBack,
    this.canShowGoBackBtn = false,
    this.title = "Attention !",
    required this.hiddeAllBtn});