SuggestionDropdown constructor

const SuggestionDropdown({
  1. required Map<String, dynamic> config,
  2. required String value,
  3. required dynamic onSelected(
    1. String
    ),
  4. required dynamic setError(
    1. String,
    2. String,
    3. int
    ),
  5. dynamic onChanged(
    1. String
    )?,
  6. dynamic onSaved(
    1. String
    )?,
  7. Key? key,
})

Implementation

const SuggestionDropdown({
  required this.config,
  required this.value,
  required this.onSelected,
  required this.setError,
  this.onChanged,
  this.onSaved,
  super.key,
});