copyWith method
Implementation
FunctionOperand copyWith(
{List<String>? arguments, String? encodedOperand, String? function}) {
return FunctionOperand(
arguments: arguments ?? this.arguments,
encodedOperand: encodedOperand ?? this.encodedOperand,
function: function ?? this.function,
);
}