call method

dynamic call(
  1. [List argv = const []]
)
override

Call as a JS function object.

Implementation

dynamic call([List argv = const []]) =>
    wrap((_object as js.JsFunction).apply(argv.map((e) => jsValue(e, script)).toList()), script);