NiceFeatureFlag constructor

const NiceFeatureFlag({
  1. required String key,
  2. required String name,
  3. String? description,
  4. bool enabled = false,
  5. int percentage = 100,
  6. List<String> environments = const [],
})

Implementation

const NiceFeatureFlag({
  required this.key,
  required this.name,
  this.description,
  this.enabled = false,
  this.percentage = 100,
  this.environments = const [],
});