ConfirmationDialog constructor

ConfirmationDialog({
  1. required String? heading,
  2. required String title,
  3. required Function onYesPressed,
  4. String? subtitle,
  5. String? atsign,
  6. Uint8List? image,
})

Implementation

ConfirmationDialog(
    {required this.heading,
    required this.title,
    required this.onYesPressed,
    this.subtitle,
    this.atsign,
    this.image});