Shipping constructor

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

Implementation

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