createNotificationChannelGroup method

Future<void> createNotificationChannelGroup(
  1. String groupId,
  2. String groupName
)

Implementation

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