ForwardQuery constructor

ForwardQuery({
  1. required String query,
  2. List<PlaceType>? types,
  3. BBox? bbox,
  4. int? limit,
  5. bool? autocomplete,
  6. bool? permanent,
  7. Proximity? proximity,
  8. String? country,
  9. String? language,
})

Implementation

ForwardQuery({
  required this.query,
  this.types,
  this.bbox,
  this.limit,
  this.autocomplete,
  this.permanent,
  this.proximity,
  this.country,
  this.language,
});