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