JuiDropdown<T>.secondary constructor

const JuiDropdown<T>.secondary({
  1. Key? key,
  2. String? label,
  3. required List<JuiDropdownOption<T>> options,
  4. required void onChanged(
    1. JuiDropdownOption<T>
    ),
  5. TextEditingController? controller,
  6. JuiDropdownOption<T>? initialValue,
  7. FormFieldValidator<String>? validator,
  8. bool loading = false,
  9. 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();