FeatureGate constructor

const FeatureGate({
  1. Key? key,
  2. required String gatedFeature,
  3. required Widget child,
  4. bool autoEnable = true,
})

Implementation

const FeatureGate(
    {Key? key,
    required this.gatedFeature,
    required this.child,
    this.autoEnable = true})
    : super(key: key);