IOSNotificationConfig constructor

const IOSNotificationConfig({
  1. bool? presentList,
  2. bool? presentAlert,
  3. bool? presentBadge,
  4. bool? presentSound,
  5. bool? presentBanner,
  6. String? sound,
  7. int? badgeNumber,
  8. String? threadIdentifier,
  9. String? categoryIdentifier,
  10. InterruptionLevel? interruptionLevel,
})

Creates an IOSNotificationConfig with the specified options.

Implementation

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