TextDropdownFormField constructor

TextDropdownFormField({
  1. Key? key,
  2. required List<String> options,
  3. InputDecoration? decoration,
  4. void onSaved(
    1. String?
    )?,
  5. DropdownEditingController<String>? controller,
  6. void onChanged(
    1. String item
    )?,
  7. String? validator(
    1. String?
    )?,
  8. Future<List<String>> findFn(
    1. String str
    )?,
  9. bool filterFn(
    1. String item,
    2. String str
    )?,
  10. double? dropdownHeight,
})

Implementation

TextDropdownFormField({
  Key? key,
  required this.options,
  this.decoration,
  this.onSaved,
  this.controller,
  this.onChanged,
  this.validator,
  this.findFn,
  this.filterFn,
  this.dropdownHeight,
}) : super(key: key);