FastAppFeaturesBlocEvent.disableFeature constructor
FastAppFeaturesBlocEvent.disableFeature(
- FastAppFeatures feature
Implementation
FastAppFeaturesBlocEvent.disableFeature(
FastAppFeatures feature,
) : super(
type: FastAppFeaturesBlocEventType.disableFeature,
payload: FastAppFeaturesBlocEventPayload(
feature: FastFeatureEntity(
name: feature.name.toLowerCase(),
isEnabled: false,
),
),
);