DarwinNotificationDetails constructor

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

Constructs an instance of DarwinNotificationDetails.

Implementation

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