$OrderAddress constructor

$OrderAddress({
  1. String? country,
  2. List<String>? fullAddress,
  3. bool? isPostOfficeBox,
  4. String? locality,
  5. String? postalCode,
  6. String? recipientName,
  7. String? region,
  8. List<String>? streetAddress,
})

Implementation

$OrderAddress({
  this.country,
  this.fullAddress,
  this.isPostOfficeBox,
  this.locality,
  this.postalCode,
  this.recipientName,
  this.region,
  this.streetAddress,
});