lastModified property

DateTime? lastModified

The date of the last modification / update of this timezone.

Implementation

DateTime? get lastModified =>
    getProperty<DateTimeProperty>(DateTimeProperty.propertyNameLastModified)
        ?.dateTime;
void lastModified=(DateTime? value)

Sets the last modification date

Implementation

set lastModified(DateTime? value) => setOrRemoveProperty(
    DateTimeProperty.propertyNameLastModified,
    DateTimeProperty.create(
        DateTimeProperty.propertyNameLastModified, value));