SearchSynonymsParams constructor

const SearchSynonymsParams({
  1. String? query,
  2. SynonymType? type,
  3. int? page,
  4. int? hitsPerPage,
})

Returns a new SearchSynonymsParams instance.

Implementation

const SearchSynonymsParams({
  this.query,
  this.type,
  this.page,
  this.hitsPerPage,
});