GiantToadDropdown<T> constructor

const GiantToadDropdown<T>({
  1. required T value,
  2. required List<T> items,
  3. required ValueChanged<T?>? onChanged,
  4. String labelFor(
    1. T value
    )?,
  5. Key? key,
})

Implementation

const GiantToadDropdown({
  required this.value,
  required this.items,
  required this.onChanged,
  this.labelFor,
  super.key,
});