isFeatureEnabled function

bool isFeatureEnabled(
  1. FastAppFeatures feature
)

Implementation

bool isFeatureEnabled(FastAppFeatures feature) {
  final featureBloc = FastAppFeaturesBloc();

  return featureBloc.isFeatureEnabled(feature);
}