SyncCheckpoint.fromSyncable constructor

SyncCheckpoint.fromSyncable(
  1. BigInt syncId
)

Create checkpoint from a syncable item

Implementation

factory SyncCheckpoint.fromSyncable(BigInt syncId) {
  return SyncCheckpoint(
    afterId: syncId,
  );
}