CyberMessageBox constructor

const CyberMessageBox({
  1. required String message,
  2. String? title,
  3. CyberMsgBoxType type = CyberMsgBoxType.defaultType,
  4. String? confirmText,
  5. String? cancelText,
})

Implementation

const CyberMessageBox({
  required this.message,
  this.title,
  this.type = CyberMsgBoxType.defaultType,
  this.confirmText,
  this.cancelText,
});