ReturnAddressAddress constructor

ReturnAddressAddress({
  1. String? country,
  2. String? locality,
  3. String? postalCode,
  4. String? recipientName,
  5. String? region,
  6. List<String>? streetAddress,
})

Implementation

ReturnAddressAddress({
  this.country,
  this.locality,
  this.postalCode,
  this.recipientName,
  this.region,
  this.streetAddress,
});