copyWith method
Implementation
WebApiLogicAppFuncSessionDepartment copyWith({
String? departmentid,
String? department,
}) {
return WebApiLogicAppFuncSessionDepartment(
departmentid: departmentid ?? this.departmentid,
department: department ?? this.department,
);
}