handleEnableFeaturesEvent method
Implementation
Stream<FastAppFeaturesBlocState> handleEnableFeaturesEvent(
List<FastFeatureEntity> features,
) async* {
if (isInitialized) {
await _dataProvider.enableFeatures(features);
yield currentState.copyWith(features: await _retrieveFeatures());
}
}