BloomNotificationChannel constructor

const BloomNotificationChannel({
  1. required String id,
  2. required String name,
  3. String? description,
  4. NotificationImportance importance = NotificationImportance.high,
})

Creates a BloomNotificationChannel definition.

Implementation

const BloomNotificationChannel({
  required this.id,
  required this.name,
  this.description,
  this.importance = NotificationImportance.high,
});