SimpleAddressType constructor

SimpleAddressType({
  1. String? city,
  2. String? line1,
  3. String? line2,
  4. String? line3,
  5. String? locationName,
  6. String? state,
  7. String? zip,
})

Implementation

SimpleAddressType({
  this.city,
  this.line1,
  this.line2,
  this.line3,
  this.locationName,
  this.state,
  this.zip,
});