IosNotificationSettings constructor

const IosNotificationSettings({
  1. bool? sound = true,
  2. bool? alert = true,
  3. bool? badge = true,
})

Implementation

const IosNotificationSettings({
  this.sound = true,
  this.alert = true,
  this.badge = true,
});