copyWith method
Implementation
IssueMatchesForJQL copyWith(
{List<String>? errors, List<int>? matchedIssues}) {
return IssueMatchesForJQL(
errors: errors ?? this.errors,
matchedIssues: matchedIssues ?? this.matchedIssues,
);
}
IssueMatchesForJQL copyWith(
{List<String>? errors, List<int>? matchedIssues}) {
return IssueMatchesForJQL(
errors: errors ?? this.errors,
matchedIssues: matchedIssues ?? this.matchedIssues,
);
}