isInitialSyncCompleted method
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;
}