getInitialSyncCheckpoint method

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

Returns the last checkpoint from the initial sync process for featureKey.

Implementation

@override
Future<SyncCheckpoint?> getInitialSyncCheckpoint(String featureKey) async {
  return _initialCheckpoints[featureKey];
}