timezoneId property

String timezoneId

Retrieves the ID such as America/New_York or Europe/Berlin

Implementation

String get timezoneId =>
    getProperty<TextProperty>(TextProperty.propertyNameTimezoneId)!.textValue;
void timezoneId=(String value)

Sets the timezone ID

Implementation

set timezoneId(String value) => setProperty(
    TextProperty.create(TextProperty.propertyNameTimezoneId, value)!);