ProductShipping constructor

ProductShipping({
  1. String? country,
  2. String? locationGroupName,
  3. String? locationId,
  4. String? maxHandlingTime,
  5. String? maxTransitTime,
  6. String? minHandlingTime,
  7. String? minTransitTime,
  8. String? postalCode,
  9. Price? price,
  10. String? region,
  11. String? service,
})

Implementation

ProductShipping({
  this.country,
  this.locationGroupName,
  this.locationId,
  this.maxHandlingTime,
  this.maxTransitTime,
  this.minHandlingTime,
  this.minTransitTime,
  this.postalCode,
  this.price,
  this.region,
  this.service,
});