updated property

DateTime? updated

A DateTime representing when this object was updated.

Implementation

DateTime? get updated {
  return _metadata['updatedTimeMillis'] == null
      ? null
      : DateTime.fromMillisecondsSinceEpoch(_metadata['updatedTimeMillis']);
}