copyWith method

WebApiLogicAppFuncSessionDepartment copyWith({
  1. String? departmentid,
  2. String? department,
})

Implementation

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