copyWith method

FunctionOperand copyWith({
  1. List<String>? arguments,
  2. String? encodedOperand,
  3. String? function,
})

Implementation

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