NativeMacosDialog constructor

NativeMacosDialog({
  1. String? title,
  2. String? message,
  3. NativeMacosDialogStyle style = NativeMacosDialogStyle.informational,
  4. required List<NativeMacosDialogButton> buttons,
})

Implementation

NativeMacosDialog({
  this.title,
  this.message,
  this.style = NativeMacosDialogStyle.informational,
  required this.buttons,
});