SearchDictionaryEntriesParams constructor

const SearchDictionaryEntriesParams({
  1. required String query,
  2. int? page,
  3. int? hitsPerPage,
  4. SupportedLanguage? language,
})

Returns a new SearchDictionaryEntriesParams instance.

Implementation

const SearchDictionaryEntriesParams({
  required this.query,
  this.page,
  this.hitsPerPage,
  this.language,
});