withIcons<T> static method
AtomicDropdown<T>
withIcons<T>({
- required List<
AtomicDropdownItem< items,T> > - required ValueChanged<
T?> onChanged, - T? value,
- String? label,
- String? hint,
Implementation
static AtomicDropdown<T> withIcons<T>({
required List<AtomicDropdownItem<T>> items,
required ValueChanged<T?> onChanged,
T? value,
String? label,
String? hint,
}) {
return AtomicDropdown<T>(
items: items,
value: value,
onChanged: onChanged,
label: label,
hint: hint,
);
}