callConstructor method
Implementation
JSValue callConstructor({List<JSValue>? argv, bool autoDispose = true}) {
argv ??= [];
return JSValue.ptr(
_ctx,
JS_CallConstructor(_ctx.ref, _ref.ref, argv.length, argv.ref),
autoDispose: autoDispose,
);
}