EventAddress constructor

EventAddress({
  1. String? locale,
  2. String? countryCode,
  3. String? countryName,
  4. String? state,
  5. String? city,
  6. String? neighborhood,
  7. String? number,
  8. String? street,
  9. String? postalCode,
  10. String? addressLine,
  11. double? latitude,
  12. double? longitude,
})

Implementation

EventAddress({
  this.locale,
  this.countryCode,
  this.countryName,
  this.state,
  this.city,
  this.neighborhood,
  this.number,
  this.street,
  this.postalCode,
  this.addressLine,
  this.latitude,
  this.longitude,
});