copyWith method

Implementation

JqlQueryOrderByClauseElement copyWith(
    {JqlQueryOrderByClauseElementDirection? direction,
    JqlQueryField? field}) {
  return JqlQueryOrderByClauseElement(
    direction: direction ?? this.direction,
    field: field ?? this.field,
  );
}