copyWith method

ContextForProjectAndIssueType copyWith({
  1. String? contextId,
  2. String? issueTypeId,
  3. String? projectId,
})

Implementation

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