dupValue method

JSValue dupValue({
  1. bool autoDispose = true,
})

Implementation

JSValue dupValue({bool autoDispose = true}) {
  return JSValue.ptr(
    _ctx,
    JS_DupValue(_ctx.ref, _ref.ref),
    autoDispose: autoDispose,
  );
}