copyWith method

JQLQueryWithUnknownUsers copyWith({
  1. String? convertedQuery,
  2. String? originalQuery,
})

Implementation

JQLQueryWithUnknownUsers copyWith(
    {String? convertedQuery, String? originalQuery}) {
  return JQLQueryWithUnknownUsers(
    convertedQuery: convertedQuery ?? this.convertedQuery,
    originalQuery: originalQuery ?? this.originalQuery,
  );
}