deleteNotificationChannelGroup method

Future<void> deleteNotificationChannelGroup(
  1. String groupId
)

Implementation

Future<void> deleteNotificationChannelGroup(String groupId) async {
  var channelInfo = {'groupId': groupId};
  await _channel.invokeMethod('deleteNotificationChannelGroup', channelInfo);
}