Selector<T> constructor

const Selector<T>({
  1. required List<T> values,
  2. required String labelBuilder(
    1. T
    ),
  3. T? value,
  4. void onChanged(
    1. T?
    )?,
  5. bool canUnselect = false,
  6. String? placeholder,
  7. String? id,
  8. String? group,
  9. ArcaneInteraction? onChangedAction,
  10. Key? key,
})

Implementation

const Selector({
  required this.values,
  required this.labelBuilder,
  this.value,
  this.onChanged,
  this.canUnselect = false,
  this.placeholder,
  this.id,
  this.group,
  this.onChangedAction,
  super.key,
});