GeoCodeRequest constructor

GeoCodeRequest({
  1. required String description,
  2. String? locale,
  3. int? maxItems,
  4. double? minLatitude,
  5. double? minLongitude,
  6. double? maxLatitude,
  7. double? maxLongitude,
})

Implementation

GeoCodeRequest({
  required this.description,
  this.locale,
  this.maxItems,
  this.minLatitude,
  this.minLongitude,
  this.maxLatitude,
  this.maxLongitude,
});