copyWith method
Implementation
ListOperand copyWith(
{String? encodedOperand, List<JqlQueryUnitaryOperand>? values}) {
return ListOperand(
encodedOperand: encodedOperand ?? this.encodedOperand,
values: values ?? this.values,
);
}
ListOperand copyWith(
{String? encodedOperand, List<JqlQueryUnitaryOperand>? values}) {
return ListOperand(
encodedOperand: encodedOperand ?? this.encodedOperand,
values: values ?? this.values,
);
}