copyWith method

IssueMatchesForJQL copyWith({
  1. List<String>? errors,
  2. List<int>? matchedIssues,
})

Implementation

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