copyWith method

IssueTypeToContextMapping copyWith({
  1. String? contextId,
  2. bool? isAnyIssueType,
  3. String? issueTypeId,
})

Implementation

IssueTypeToContextMapping copyWith(
    {String? contextId, bool? isAnyIssueType, String? issueTypeId}) {
  return IssueTypeToContextMapping(
    contextId: contextId ?? this.contextId,
    isAnyIssueType: isAnyIssueType ?? this.isAnyIssueType,
    issueTypeId: issueTypeId ?? this.issueTypeId,
  );
}