handleFeaturesRetrievedEvent method
Implementation
Stream<FastAppFeaturesBlocState> handleFeaturesRetrievedEvent(
List<FastFeatureEntity> features,
) async* {
if (isInitialized) {
yield currentState.copyWith(
isRetrievingFeatures: false,
features: features,
);
}
}