SignalAddressData constructor

SignalAddressData({
  1. String? city,
  2. String? region,
  3. String? street,
  4. String? postalCode,
  5. String? country,
})

Implementation

SignalAddressData({
  this.city,
  this.region,
  this.street,
  this.postalCode,
  this.country,
});