createNotificationChannel abstract method

Future<void> createNotificationChannel({
  1. required String channelId,
  2. required String channelName,
  3. required String channelDescription,
  4. required int importance,
  5. required bool showBadge,
  6. String? sound,
  7. String? groupId,
})

Implementation

Future<void> createNotificationChannel({
  required String channelId,
  required String channelName,
  required String channelDescription,
  required int importance, // TODO read from constant
  required bool showBadge,
  String? sound,
  String? groupId,
});