copyWith method

IssueSecuritySchemeToProjectMapping copyWith({
  1. String? issueSecuritySchemeId,
  2. String? projectId,
})

Implementation

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