NiceCascadeSelect<T> constructor

const NiceCascadeSelect<T>({
  1. Key? key,
  2. required List<NiceCascadeOption<T>> options,
  3. List<T>? value,
  4. ValueChanged<List<T>>? onChanged,
  5. String? label,
  6. String placeholder = 'Select...',
})

Implementation

const NiceCascadeSelect({
  super.key,
  required this.options,
  this.value,
  this.onChanged,
  this.label,
  this.placeholder = 'Select...',
});