OpsErrorScreen constructor

const OpsErrorScreen({
  1. Key? key,
  2. required String message,
  3. required VoidCallback onClosing,
  4. required VoidCallback goBack,
  5. bool canShowGoBackBtn = false,
  6. String title = "Echec de l'opération !",
  7. required bool hiddeAllBtn,
})

Implementation

const OpsErrorScreen(
    {super.key,
    required this.message,
    required this.onClosing,
    required this.goBack,
    this.canShowGoBackBtn = false,
    this.title = "Echec de l'opération !",
    required this.hiddeAllBtn});