timezoneName property

String? timezoneName

Retrieves the (first) name of the timezone

Implementation

String? get timezoneName =>
    getProperty<TextProperty>(TextProperty.propertyNameTimezoneName)
        ?.textValue;
void timezoneName=(String? value)

Sets the timezone's name

Implementation

set timezoneName(String? value) => setOrRemoveProperty(
    TextProperty.propertyNameTimezoneName,
    TextProperty.create(TextProperty.propertyNameTimezoneName, value));