TextSearchRequest constructor

TextSearchRequest({
  1. String? language,
  2. required String query,
  3. Coordinate? location,
  4. int? radius,
  5. int? pageSize,
  6. LocationType? poiType,
  7. HwLocationType? hwPoiType,
  8. int? pageIndex,
  9. String? countryCode,
  10. bool? children,
  11. List<String>? countries,
})

Implementation

TextSearchRequest({
  this.language,
  required this.query,
  this.location,
  this.radius,
  this.pageSize,
  this.poiType,
  this.hwPoiType,
  this.pageIndex,
  this.countryCode,
  this.children,
  this.countries,
});