copyWith method

ValueOperand copyWith({
  1. String? encodedValue,
  2. String? value,
})

Implementation

ValueOperand copyWith({String? encodedValue, String? value}) {
  return ValueOperand(
    encodedValue: encodedValue ?? this.encodedValue,
    value: value ?? this.value,
  );
}