copyWith method
Implementation
SimplifiedHierarchyLevel copyWith(
{int? aboveLevelId,
int? belowLevelId,
String? externalUuid,
int? hierarchyLevelNumber,
int? id,
List<int>? issueTypeIds,
int? level,
String? name,
int? projectConfigurationId}) {
return SimplifiedHierarchyLevel(
aboveLevelId: aboveLevelId ?? this.aboveLevelId,
belowLevelId: belowLevelId ?? this.belowLevelId,
externalUuid: externalUuid ?? this.externalUuid,
hierarchyLevelNumber: hierarchyLevelNumber ?? this.hierarchyLevelNumber,
id: id ?? this.id,
issueTypeIds: issueTypeIds ?? this.issueTypeIds,
level: level ?? this.level,
name: name ?? this.name,
projectConfigurationId:
projectConfigurationId ?? this.projectConfigurationId,
);
}