SearchOptions constructor

const SearchOptions({
  1. SearchType searchType = SearchType.none,
  2. bool geometry = false,
  3. bool disableSpellingCorrection = false,
  4. int? resultPageSize,
  5. Point? userPosition,
  6. String? origin,
})

Implementation

const SearchOptions({
  this.searchType = SearchType.none,
  this.geometry = false,
  this.disableSpellingCorrection = false,
  this.resultPageSize,
  this.userPosition,
  this.origin,
});