YesNoModal constructor

YesNoModal({
  1. required Color backgroundColour,
  2. required String title,
  3. required String subtitle,
  4. required String message,
  5. String? cancelLabel,
  6. String? confirmLabel,
  7. IconData? icon,
  8. Color? iconColour,
})

Implementation

YesNoModal({
  required this.backgroundColour,
  required this.title,
  required this.subtitle,
  required this.message,
  this.cancelLabel,
  this.confirmLabel,
  this.icon,
  this.iconColour,
});