NiceFeatureFlags constructor
- Key? key,
- required List<
NiceFeatureFlag> flags, - void onToggle()?,
- void onEdit(
- NiceFeatureFlag flag
- String title = 'Feature Flags',
Implementation
const NiceFeatureFlags({
super.key,
required this.flags,
this.onToggle,
this.onEdit,
this.title = 'Feature Flags',
});