OpsSuccessScreen constructor

const OpsSuccessScreen({
  1. Key? key,
  2. required String message,
  3. required VoidCallback onClosing,
  4. String title = "Opération Réussie !",
  5. required bool hiddeAllBtn,
})

Implementation

const OpsSuccessScreen(
    {super.key,
    required this.message,
    required this.onClosing,
    this.title = "Opération Réussie !",
    required this.hiddeAllBtn});