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