getBackgroundSyncCheckpoint method

  1. @override
Future<SyncCheckpoint?> getBackgroundSyncCheckpoint(
  1. String featureKey
)
override

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];
}