call method
Implementation
@override
Object? call(Interpreter interpreter, List<Object?> arguments,
Map<Symbol, Object?> namedArguments) {
var source = namedArguments[const Symbol('source')];
if (source == null) {
throw "parameter source is required";
}
return controller.evaluateJavascript(source: source as String);
}