copy method

  1. @override
FunctionCallStatement copy()
override

Create a deep copy of the Statement.

Implementation

@override
FunctionCallStatement copy() {
  return FunctionCallStatement.init(
    customFunctionName,
    List.from(arguments.map((e) => e.copy())),
  );
}