CarpenterSelect<T> constructor

const CarpenterSelect<T>({
  1. Key? key,
  2. required List<CarpenterSelectItem<T>> items,
  3. T? value,
  4. ValueChanged<T?>? onChanged,
  5. bool isExpanded = false,
  6. bool compact = false,
  7. Widget? placeholder,
})

Implementation

const CarpenterSelect({
  super.key,
  required this.items,
  this.value,
  this.onChanged,
  this.isExpanded = false,
  this.compact = false,
  this.placeholder,
});