AuiDropdown<T> constructor
const
AuiDropdown<T> ({
- Key? key,
- required List<
AuiDropdownItem< items,T> > - required ValueChanged<
T?> ? onChanged, - T? value,
- String? hint,
- String? label,
- String? error,
- bool disabled = false,
- double? borderRadius,
Creates an outlined AuiDropdown (default variant).
Implementation
const AuiDropdown({
super.key,
required this.items,
required this.onChanged,
this.value,
this.hint,
this.label,
this.error,
this.disabled = false,
this.borderRadius,
}) : _variant = _AuiDropdownVariant.outlined;