copyWith method

ProjectAndIssueTypePair copyWith({
  1. String? issueTypeId,
  2. String? projectId,
})

Implementation

ProjectAndIssueTypePair copyWith({String? issueTypeId, String? projectId}) {
  return ProjectAndIssueTypePair(
    issueTypeId: issueTypeId ?? this.issueTypeId,
    projectId: projectId ?? this.projectId,
  );
}