DialogAlert constructor

DialogAlert({
  1. required String title,
  2. String? message,
  3. String buttonLabel = 'OK',
  4. CmdCallback? onDismiss,
  5. Key? key,
})

Implementation

DialogAlert({
  required this.title,
  this.message,
  this.buttonLabel = 'OK',
  this.onDismiss,
  super.key,
});