copyWith method
Implementation
JqlQuery copyWith({JqlQueryOrderByClause? orderBy, JqlQueryClause? where}) {
return JqlQuery(
orderBy: orderBy ?? this.orderBy,
where: where ?? this.where,
);
}
JqlQuery copyWith({JqlQueryOrderByClause? orderBy, JqlQueryClause? where}) {
return JqlQuery(
orderBy: orderBy ?? this.orderBy,
where: where ?? this.where,
);
}