FastAppFeaturesBlocEvent.disableFeature constructor

FastAppFeaturesBlocEvent.disableFeature(
  1. FastAppFeatures feature
)

Implementation

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