JuiMessageBox constructor

const JuiMessageBox({
  1. Key? key,
  2. String? message,
  3. String? confirmLabel,
  4. Function? confirmAction,
  5. String? cancelLabel,
  6. Function? cancelAction,
})

Implementation

const JuiMessageBox({
  Key? key,
  this.message,
  this.confirmLabel,
  this.confirmAction,
  this.cancelLabel,
  this.cancelAction,
}) : super(key: key);