AutoCompleteCompleter typedef
Function signature for customizing how autocomplete suggestions are applied.
Takes a suggestion
string and returns the final text that should be
inserted into the text field. This allows for custom formatting or
modification of suggestions before they're applied.
Implementation
typedef AutoCompleteCompleter = String Function(String suggestion);