PrintAddressInterface constructor

const PrintAddressInterface({
  1. String address1 = '',
  2. String address2 = '',
  3. String city = '',
  4. String state = '',
  5. String postalCode = '',
  6. String country = '',
})

Implementation

const PrintAddressInterface({
  this.address1 = '',
  this.address2 = '',
  this.city = '',
  this.state = '',
  this.postalCode = '',
  this.country = '',
});