MacOSNotificationDetails constructor

const MacOSNotificationDetails({
  1. bool? presentAlert,
  2. bool? presentBadge,
  3. bool? presentSound,
  4. String? sound,
  5. int? badgeNumber,
  6. List<MacOSNotificationAttachment>? attachments,
  7. String? subtitle,
  8. String? threadIdentifier,
})

Constructs an instance of MacOSNotificationDetails.

Implementation

const MacOSNotificationDetails({
  this.presentAlert,
  this.presentBadge,
  this.presentSound,
  this.sound,
  this.badgeNumber,
  this.attachments,
  this.subtitle,
  this.threadIdentifier,
});