DictionarySearchParams constructor

DictionarySearchParams(
  1. {required String searchTerm,
  2. required int maximumDictionarySearchResults,
  3. required int maximumDictionaryTermsInResult,
  4. required List<int> enabledDictionaryIds,
  5. required bool searchWithWildcards,
  6. required SendPort sendPort,
  7. required String directoryPath}
)

Prepare parameters needed for searching the dictionary database from a separate isolate.

Implementation

DictionarySearchParams({
  required this.searchTerm,
  required this.maximumDictionarySearchResults,
  required this.maximumDictionaryTermsInResult,
  required this.enabledDictionaryIds,
  required this.searchWithWildcards,
  required super.sendPort,
  required super.directoryPath,
});