createNotificationChannelGroup method

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

Implementation

Future<void> createNotificationChannelGroup(
    String groupId, String groupName) async {
  await _channel.invokeMethod("createNotificationChannelGroup",
      {"group_id": groupId, "group_name": groupName});
}