copyWith method
Implementation
IssueSecuritySchemeToProjectMapping copyWith(
{String? issueSecuritySchemeId, String? projectId}) {
return IssueSecuritySchemeToProjectMapping(
issueSecuritySchemeId:
issueSecuritySchemeId ?? this.issueSecuritySchemeId,
projectId: projectId ?? this.projectId,
);
}