evalFunction method

JSValue evalFunction(
  1. JSValue funObj, {
  2. bool autoDispose = true,
})

Implementation

JSValue evalFunction(JSValue funObj, {bool autoDispose = true}) =>
    JSValue.ptr(
      this,
      JS_EvalFunction(_ref, funObj.ref.ref),
      autoDispose: autoDispose,
    );