GeoLocationData constructor

GeoLocationData(
  1. String? street,
  2. String? block,
  3. String? postCode,
  4. String? country,
  5. String? countryCode,
  6. String? state,
  7. String? houseNumber,
  8. String? city,
)

Implementation

GeoLocationData(
  this.street,
  this.block,
  this.postCode,
  this.country,
  this.countryCode,
  this.state,
  this.houseNumber,
  this.city,
);