parseJSON method
Implementation
JSValue parseJSON(
String buf,
int len,
String filename, {
bool autoDispose = true,
}) =>
JSValue.ptr(
this,
JS_ParseJSON(_ref, buf.toNativeUtf8(), len, filename.toNativeUtf8()),
autoDispose: autoDispose,
);