readObject method
Implementation
JSValue readObject(Uint8List buf, int flags, {bool autoDispose = true}) {
_buf = buf.toUint8();
return JSValue.ptr(
this,
JS_ReadObject(_ref, _buf!, buf.length, flags),
autoDispose: autoDispose,
);
}