SyncCheckpoint.fromJson constructor
Implementation
factory SyncCheckpoint.fromJson(Map<String, dynamic> json) => SyncCheckpoint(
lastSyncedId: BigInt.parse(json['lastSyncedId'] as String),
lastSyncedAt: json['lastSyncedAt'] as String,
);