definePropertyValueUint32 method

bool definePropertyValueUint32(
  1. int idx,
  2. JSValue item, {
  3. JSProp? flags,
})

Implementation

bool definePropertyValueUint32(int idx, JSValue item, {JSProp? flags}) {
  flags ??= JSProp.C_W_E;
  return JS_DefinePropertyValueUint32(
        _ctx.ref,
        _ref.ref,
        idx,
        item.ref.ref,
        flags.value,
      ) !=
      0;
}