OrderRefundItemBody constructor

OrderRefundItemBody({
  1. String? id,
  2. int? quantity,
  3. bool? includeToStock,
  4. String? note,
})

Implementation

OrderRefundItemBody({
  this.id,
  this.quantity,
  this.includeToStock,
  this.note,
});