FormItemLabeledDropdownField constructor

const FormItemLabeledDropdownField({
  1. TextEditingController? controller,
  2. required Map<String, String> items,
  3. String? labelText,
  4. Widget? prefix,
  5. double? height,
  6. double dropdownWidth = 100,
  7. Color? backgroundColor,
  8. bool dense = false,
  9. bool enabled = true,
  10. Widget? suffix,
  11. void onSaved(
    1. String? value
    )?,
  12. void onChanged(
    1. String? value
    )?,
})

Implementation

const FormItemLabeledDropdownField({
  this.controller,
  required this.items,
  this.labelText,
  this.prefix,
  this.height,
  this.dropdownWidth = 100,
  this.backgroundColor,
  this.dense = false,
  this.enabled = true,
  this.suffix,
  this.onSaved,
  this.onChanged,
});