copyWith method

ProjectIssueTypeHierarchy copyWith({
  1. List<ProjectIssueTypesHierarchyLevel>? hierarchy,
  2. int? projectId,
})

Implementation

ProjectIssueTypeHierarchy copyWith(
    {List<ProjectIssueTypesHierarchyLevel>? hierarchy, int? projectId}) {
  return ProjectIssueTypeHierarchy(
    hierarchy: hierarchy ?? this.hierarchy,
    projectId: projectId ?? this.projectId,
  );
}