GeocodingApiResponse constructor

GeocodingApiResponse({
  1. String? type,
  2. List<String>? query,
  3. String? attribution,
  4. List<GeocoderFeature>? features,
  5. Error? error,
})

Implementation

GeocodingApiResponse({
  this.type,
  this.query,
  this.attribution,
  this.features,
  this.error,
});