updatedAt property

DateTime? updatedAt

This reports time as the server sees it, so that if you make changes to a ParseObject, then wait a while, and then call save, the updated time will be the time of the save call rather than the time the object was changed locally.

Implementation

DateTime? get updatedAt => _updatedAt ?? _createdAt;