isObject property
bool
get
isObject
Tests whether a JavaScript value's type is the object type.
Implementation
bool get isObject {
return type == JSType.kJSTypeObject;
// return JSValueIsObject(context.ref, _ref);
}