lastRemoteTimestamp property

  1. @override
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;
  1. @override
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);