lastModified property
DateTime?
get
lastModified
Describes when this data was last modified.
The moment the resource was last modified.
Examples: last activity timestamp in an open file, timestamp when the resource was attached, etc.
Implementation
DateTime? get lastModified {
final lastModified = _value['lastModified'] as String?;
if (lastModified == null) return null;
return DateTime.parse(lastModified);
}