ShippingDetails constructor

ShippingDetails({
  1. String? notes,
  2. int? numberOfPackages,
  3. int? weight,
  4. String? weightUnit,
  5. int? length,
  6. int? width,
  7. int? height,
  8. String? contents,
})

Implementation

ShippingDetails({
  this.notes,
  this.numberOfPackages,
  this.weight,
  this.weightUnit,
  this.length,
  this.width,
  this.height,
  this.contents,
});