isInitialSyncCompleted method

  1. @override
Future<bool> isInitialSyncCompleted(
  1. String featureKey
)
override

Returns whether the initial (critical) sync has been completed for featureKey. If true, initial sync may be skipped for that feature.

Implementation

@override
Future<bool> isInitialSyncCompleted(String featureKey) async {
  return _initialCompleted[featureKey] ?? false;
}