deleteNotificationChannelGroup static method

Future<void> deleteNotificationChannelGroup(
  1. String groupId
)

Method to delete Notification Channel Group

Implementation

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