FeatureFlag constructor

const FeatureFlag({
  1. required String key,
  2. required String name,
  3. String? description,
  4. bool isEnabled = false,
  5. String? category,
})

Creates a new feature flag.

Implementation

const FeatureFlag({
  required this.key,
  required this.name,
  this.description,
  this.isEnabled = false,
  this.category,
});