QuerySuggestionRequest constructor

QuerySuggestionRequest({
  1. required String query,
  2. Coordinate? location,
  3. int? radius,
  4. CoordinateBounds? bounds,
  5. List<LocationType>? poiTypes,
  6. String? countryCode,
  7. String? language,
  8. bool? children,
  9. bool? strictBounds,
  10. List<String>? countries,
})

Implementation

QuerySuggestionRequest({
  required this.query,
  this.location,
  this.radius,
  this.bounds,
  this.poiTypes,
  this.countryCode,
  this.language,
  this.children,
  this.strictBounds,
  this.countries,
});