setPurchaseOrderId method

Order setPurchaseOrderId(
  1. String purchaseOrderId
)

Sets the purchaseOrderId In case of the _orderType is returnOrder.

Implementation

Order setPurchaseOrderId(String purchaseOrderId) {
  _orderDetails.copyWith(purchaseOrderId: purchaseOrderId);
  return this;
}