copyWith method

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

Implementation

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