copyWith method
Implementation
ParsedJqlQuery copyWith(
{List<String>? errors, String? query, JqlQuery? structure}) {
return ParsedJqlQuery(
errors: errors ?? this.errors,
query: query ?? this.query,
structure: structure ?? this.structure,
);
}