lastRemoteTimestamp property
int
get
lastRemoteTimestamp
Last remote timestamp (UTC milliseconds) synced from server.
Used in sync:get_changes requests to fetch only newer changes.
Implementation
@override
int get lastRemoteTimestamp =>
RealmObjectBase.get<int>(this, 'lastRemoteTimestamp') as int;
set
lastRemoteTimestamp
(int value)
Last remote timestamp (UTC milliseconds) synced from server.
Used in sync:get_changes requests to fetch only newer changes.
Implementation
@override
set lastRemoteTimestamp(int value) =>
RealmObjectBase.set(this, 'lastRemoteTimestamp', value);