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