isBoolean property

bool get isBoolean

Tests whether a JavaScript value's type is the boolean type.

Implementation

bool get isBoolean {
  return type == JSType.kJSTypeBoolean;
  // return JSValueGetType(context.ref, _ref) == 1;
}