PoiSearchQuery constructor

PoiSearchQuery({
  1. String? query,
  2. String? city,
  3. String? category,
  4. String? building,
  5. int? pageNum = 1,
  6. int? pageSize = 20,
  7. bool? cityLimit = false,
  8. bool? requireSubPois = false,
  9. bool? distanceSort = true,
  10. LatLng? location,
  11. bool? requireExtension = false,
  12. SearchBound? searchBound,
})

Implementation

PoiSearchQuery({
  this.query,
  this.city,
  this.category,
  this.building,
  this.pageNum = 1,
  this.pageSize = 20,
  this.cityLimit = false,
  this.requireSubPois = false,
  this.distanceSort = true,
  this.location,
  this.requireExtension = false,
  this.searchBound,
});