execute method
Execute the built-in function with the provided arguments.
Arguments are already validated by FunctionCallStatement.preExecute before this method is called, so no additional validation is needed here.
Implementation
@override
DartBlockValue? execute(DartBlockArbiter arbiter, List<DartBlockValue> args) {
return implementation(arbiter, args);
}