SimpleFeatureGate constructor

const SimpleFeatureGate({
  1. required Map<String, bool> flags,
  2. required String flag,
  3. required Widget child,
  4. Widget fallback = const SizedBox.shrink(),
  5. Key? key,
})

Implementation

const SimpleFeatureGate({
  required this.flags,
  required this.flag,
  required this.child,
  this.fallback = const SizedBox.shrink(),
  super.key,
});