OrderPutBody constructor

OrderPutBody({
  1. String? id,
  2. String? storeId,
  3. String? status,
  4. String? type,
  5. String? note,
  6. AddressBody? billingAddress,
  7. AddressBody? shippingAddress,
})

Implementation

OrderPutBody({
  this.id,
  this.storeId,
  this.status,
  this.type,
  this.note,
  this.billingAddress,
  this.shippingAddress,
});