copy method
Create a deep copy of the Statement.
Implementation
@override
FunctionCallStatement copy() {
return FunctionCallStatement.init(
customFunctionName,
List.from(arguments.map((e) => e.copy())),
);
}
Create a deep copy of the Statement.
@override
FunctionCallStatement copy() {
return FunctionCallStatement.init(
customFunctionName,
List.from(arguments.map((e) => e.copy())),
);
}