copyWith method
Implementation
WebApiModulesAgentPurchaseOrderPurchaseOrderApprovalRequest copyWith({
String? officeLocationId,
String? departmentId,
bool? includeNewPo,
}) {
return WebApiModulesAgentPurchaseOrderPurchaseOrderApprovalRequest(
officeLocationId: officeLocationId ?? this.officeLocationId,
departmentId: departmentId ?? this.departmentId,
includeNewPo: includeNewPo ?? this.includeNewPo,
);
}