copyWith method

JqlQuery copyWith({
  1. JqlQueryOrderByClause? orderBy,
  2. JqlQueryClause? where,
})

Implementation

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