time property
Timestamp when the content was created.
Represented as a DateTime object (parsed from Unix timestamp in serialized format). Returns: Content creation timestamp, or null if not specified.
Implementation
@override
DateTime? get time {
_time ??= getDateTime('time');
return _time;
}