copyWith method

ListOperand copyWith({
  1. String? encodedOperand,
  2. List<JqlQueryUnitaryOperand>? values,
})

Implementation

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