NearbySearchRequest constructor

NearbySearchRequest({
  1. int? pageSize,
  2. int? pageIndex,
  3. String? query,
  4. required Coordinate location,
  5. int? radius,
  6. LocationType? poiType,
  7. String? language,
  8. HwLocationType? hwPoiType,
  9. bool? strictBounds,
})

Implementation

NearbySearchRequest({
  this.pageSize,
  this.pageIndex,
  this.query,
  required this.location,
  this.radius,
  this.poiType,
  this.language,
  this.hwPoiType,
  this.strictBounds,
});