SingleSegmentedEditor<T> constructor

const SingleSegmentedEditor<T>({
  1. required LabelBuilder<T> label,
  2. required List<T> values,
})

Implementation

const SingleSegmentedEditor({
  required this.label,
  required this.values,
});