ConfirmationDialog constructor

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

Implementation

ConfirmationDialog(
    {Key? key,
    required this.heading,
    required this.title,
    required this.onYesPressed,
    this.subtitle,
    this.atsign,
    this.image})
    : super(key: key);