location property

String? location

Retrieves the location from the proprietary X-LIC-LOCATION property, if defined

Implementation

String? get location =>
    getProperty<TextProperty>(TextProperty.propertyNameXTimezoneLocation)
        ?.text;
void location=(String? value)

Sets the timezone location using the proprietary X-LIC-LOCATION property.

Implementation

set location(String? value) => setOrRemoveProperty(
    TextProperty.propertyNameXTimezoneLocation,
    TextProperty.create(TextProperty.propertyNameXTimezoneLocation, value));