deleteNotificationChannel method

Future<void> deleteNotificationChannel({
  1. required String channelId,
})

Deletes the notification channel with the specified channelId.

This method is only applicable to Android versions 8.0 or newer.

Implementation

Future<void> deleteNotificationChannel({required String channelId}) =>
    _channel.invokeMethod('deleteNotificationChannel', channelId);