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