createNotificationChannel static method
Creates a new NotificationChannel
with the provided parameters.
Implementation
static Future<void> createNotificationChannel({
required String id,
required String name,
required String sound,
String description = '',
}) async {
await platform.invokeMethod('createNotificationChannel', {
'id': id,
'name': name,
'sound': sound,
'description': description,
});
}