DictionaryCallback typedef
DictionaryCallback =
Future<DictionaryEntry?> Function(String term)
Function definition of an asynchronous callback that returns the properties
of a term from a dictionary provider or API.
Implementation
typedef DictionaryCallback = Future<DictionaryEntry?> Function(String term);