callAsConstructorVarArgs<T extends JSObject> method

T callAsConstructorVarArgs<T extends JSObject>(
  1. [List<JSAny?>? arguments]
)

Calls this JSFunction as a constructor with a variable number of arguments and returns the constructed JSObject.

Implementation

T callAsConstructorVarArgs<T extends JSObject>([List<JSAny?>? arguments]) =>
    _callAsConstructorVarArgs(arguments) as T;