copyWith method
Implementation
WebApiModulesAgentPurchaseOrderReceiveContractRequest copyWith(
{String? purchaseOrderId,
String? officeLocationId,
String? warehouseId}) {
return WebApiModulesAgentPurchaseOrderReceiveContractRequest(
purchaseOrderId: purchaseOrderId ?? this.purchaseOrderId,
officeLocationId: officeLocationId ?? this.officeLocationId,
warehouseId: warehouseId ?? this.warehouseId);
}