StructuredQuery constructor

StructuredQuery({
  1. String? addressNumber,
  2. String? street,
  3. String? postcode,
  4. String? place,
  5. String? region,
  6. String? country,
  7. String? locality,
  8. String? neighborhood,
})

Implementation

StructuredQuery({
  this.addressNumber,
  this.street,
  this.postcode,
  this.place,
  this.region,
  this.country,
  this.locality,
  this.neighborhood,
});