createNotificationChannelGroup static method

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

Method to create Notification Channel Group

Implementation

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