JuiDropdown<T>.secondary constructor
const
JuiDropdown<T>.secondary ({
- Key? key,
- String? label,
- required List<
JuiDropdownOption< options,T> > - required void onChanged(),
- TextEditingController? controller,
- JuiDropdownOption<
T> ? initialValue, - FormFieldValidator<
String> ? validator, - bool loading = false,
- bool disabled = false,
Implementation
const JuiDropdown.secondary({
super.key,
this.label,
required this.options,
required this.onChanged,
this.controller,
this.initialValue,
this.validator,
this.loading = false,
this.disabled = false,
}) : _isDarkThemed = true,
super();