copyWith method

ProjectIssueTypesHierarchyLevel copyWith({
  1. String? entityId,
  2. List<IssueTypeInfo>? issueTypes,
  3. int? level,
  4. String? name,
})

Implementation

ProjectIssueTypesHierarchyLevel copyWith(
    {String? entityId,
    List<IssueTypeInfo>? issueTypes,
    int? level,
    String? name}) {
  return ProjectIssueTypesHierarchyLevel(
    entityId: entityId ?? this.entityId,
    issueTypes: issueTypes ?? this.issueTypes,
    level: level ?? this.level,
    name: name ?? this.name,
  );
}