MiniDialog constructor

const MiniDialog({
  1. Key? key,
  2. String? title,
  3. required String message,
  4. String? confirmLabel,
  5. String? cancelLabel,
})

Implementation

const MiniDialog({
  super.key,
  this.title,
  required this.message,
  this.confirmLabel,
  this.cancelLabel,
});