copyWith method
Implementation
WebApiModulesAgentPurchaseOrderConfirmVendorRetrieveRequest copyWith(
{String? purchaseOrderId, String? deliveryId}) {
return WebApiModulesAgentPurchaseOrderConfirmVendorRetrieveRequest(
purchaseOrderId: purchaseOrderId ?? this.purchaseOrderId,
deliveryId: deliveryId ?? this.deliveryId);
}