commonName property

String? commonName

Gets the common name associated with this calendar user

Implementation

String? get commonName => getParameterValue<String>(ParameterType.commonName);
void commonName=(String? value)

Sets the common name associated with this calendar user

Implementation

set commonName(String? value) => setOrRemoveParameter(
      ParameterType.commonName,
      TextParameter.create(ParameterType.commonName.typeName ?? '', value),
    );