lastModified property

DateTime? lastModified
inherited

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

Implementation

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

Sets the last modification date

Implementation

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