timezoneId property

String? timezoneId

Retrieves the timezone ID like America/New_York or Europe/Berlin from the TZID parameter.

Implementation

String? get timezoneId => this[ParameterType.timezoneId]?.textValue;
void timezoneId=(String? value)

Set the timezone ID

Implementation

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