NiceDisplayStylePicker constructor

const NiceDisplayStylePicker({
  1. Key? key,
  2. required NiceDisplayStyle value,
  3. required ValueChanged<NiceDisplayStyle> onChanged,
  4. bool showLabels = false,
  5. bool compact = false,
})

Implementation

const NiceDisplayStylePicker({
  super.key,
  required this.value,
  required this.onChanged,
  this.showLabels = false,
  this.compact = false,
});