throwRangeError method

JSValue throwRangeError(
  1. String fmt, {
  2. bool autoDispose = true,
})

Implementation

JSValue throwRangeError(String fmt, {bool autoDispose = true}) => JSValue.ptr(
      this,
      JS_ThrowRangeError(_ref, fmt.toNativeUtf8()),
      autoDispose: autoDispose,
    );