createNotificationChannel abstract method
Future<void>
createNotificationChannel(
{ - required String channelId,
- required String channelName,
- required String channelDescription,
- required int importance,
- required bool showBadge,
- String? sound,
- 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,
});