getBackgroundSyncCheckpoint method
Returns the last checkpoint from a successful background sync for featureKey.
Used for resumable, incremental syncing.
Implementation
@override
Future<SyncCheckpoint?> getBackgroundSyncCheckpoint(String featureKey) async {
return _backgroundCheckpoints[featureKey];
}