registerNewGroupAdministrator method

Future<RegistrationSuccess> registerNewGroupAdministrator(
  1. RegistrationInformation registrationInformation, {
  2. GroupType? type,
  3. PermissionType? role,
})

Implementation

Future<RegistrationSuccess> registerNewGroupAdministrator(RegistrationInformation registrationInformation, { GroupType? type, PermissionType? role }) async {
	return await CardinalSdkPlatformInterface.instance.apis.group.registerNewGroupAdministrator(
		_sdkId,
		type,
		role,
		registrationInformation,
	);
}