JSValue.makeBoolean constructor

JSValue.makeBoolean(
  1. JSContext context, {
  2. required bool boolean,
})

Implementation

factory JSValue.makeBoolean(
  JSContext context, {
  required bool boolean,
}) {
  return JSValue(context, js_bd.JSValueMakeBoolean(context.ref, boolean));
}