OrgFeatureGate constructor

const OrgFeatureGate({
  1. Key? key,
  2. required String orgId,
  3. required String feature,
  4. required bool check(
    1. OrgEntitlement
    ),
  5. required Widget child,
  6. String? kicker,
  7. String? title,
  8. List<String> highlights = const [],
})

Implementation

const OrgFeatureGate({
  super.key,
  required this.orgId,
  required this.feature,
  required this.check,
  required this.child,
  this.kicker,
  this.title,
  this.highlights = const [],
});