deleteNotificationChannel static method

Future<void> deleteNotificationChannel(
  1. String channelId
)

Method to delete Notification Channel

Implementation

static Future<void> deleteNotificationChannel(String channelId) async {
  return await _dartToNativeMethodChannel
      .invokeMethod('deleteNotificationChannel', {'channelId': channelId});
}