JSONStringify method
Implementation
JSValue JSONStringify(
JSValue obj, {
JSValue? replacer,
JSValue? space0,
bool autoDispose = true,
}) =>
JSValue.ptr(
this,
JS_JSONStringify(
_ref,
obj.ref.ref,
replacer?.ref.ref ?? JSValue.alloc(this, JSTag.NULL).ref.ref,
replacer?.ref.ref ?? JSValue.alloc(this, JSTag.NULL).ref.ref,
),
autoDispose: autoDispose,
);