getPropertyStr method

JSValue getPropertyStr(
  1. String prop, {
  2. bool autoDispose = true,
})

Implementation

JSValue getPropertyStr(String prop, {bool autoDispose = true}) => JSValue.ptr(
      _ctx,
      JS_GetPropertyStr(_ctx.ref, _ref.ref, prop.toNativeUtf8()),
      autoDispose: autoDispose,
    );