NotificationPreference constructor

const NotificationPreference({
  1. required NotificationCategory category,
  2. required Set<NotificationChannel> channels,
  3. int minSeverity = 1,
})

Implementation

const NotificationPreference({
  required this.category,
  required this.channels,
  this.minSeverity = 1,
});