updateInitialSyncCheckpoint method

  1. @override
Future<void> updateInitialSyncCheckpoint(
  1. String featureKey,
  2. SyncCheckpoint? checkpoint
)
override

Updates the last checkpoint used by the initial sync process for featureKey. This is kept separate from the background sync checkpoint to avoid conflicts.

Implementation

@override
Future<void> updateInitialSyncCheckpoint(
  String featureKey,
  SyncCheckpoint? checkpoint,
) async {
  _initialCheckpoints[featureKey] = checkpoint;
}