copyWith method

Implementation

JqlQueryOrderByClause copyWith({List<JqlQueryOrderByClauseElement>? fields}) {
  return JqlQueryOrderByClause(
    fields: fields ?? this.fields,
  );
}