setInitialSyncCompleted method

  1. @override
Future<void> setInitialSyncCompleted(
  1. String featureKey,
  2. bool completed
)
override

Sets the initial sync completed flag for featureKey.

Implementation

@override
Future<void> setInitialSyncCompleted(
    String featureKey, bool completed) async {
  _initialCompleted[featureKey] = completed;
}