NiceFeatureFlags constructor

const NiceFeatureFlags({
  1. Key? key,
  2. required List<NiceFeatureFlag> flags,
  3. void onToggle(
    1. String key,
    2. bool enabled
    )?,
  4. void onEdit(
    1. NiceFeatureFlag flag
    )?,
  5. String title = 'Feature Flags',
})

Implementation

const NiceFeatureFlags({
  super.key,
  required this.flags,
  this.onToggle,
  this.onEdit,
  this.title = 'Feature Flags',
});