copyWith method

ParsedJqlQuery copyWith({
  1. List<String>? errors,
  2. String? query,
  3. JqlQuery? structure,
})

Implementation

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