DarwinNotificationDetails constructor

const DarwinNotificationDetails({
  1. bool? presentAlert,
  2. bool? presentBadge,
  3. bool? presentSound,
  4. String? sound,
  5. int? badgeNumber,
  6. List<DarwinNotificationAttachment>? attachments,
  7. String? subtitle,
  8. String? threadIdentifier,
  9. String? categoryIdentifier,
  10. InterruptionLevel? interruptionLevel,
})

Constructs an instance of DarwinNotificationDetails.

Implementation

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