GiantToadDropdown<T> constructor
const
GiantToadDropdown<T> ({
- required T value,
- required List<
T> items, - required ValueChanged<
T?> ? onChanged, - String labelFor(
- T value
- Key? key,
Implementation
const GiantToadDropdown({
required this.value,
required this.items,
required this.onChanged,
this.labelFor,
super.key,
});