JSType class

enum JSType A constant identifying the type of a JSValue.

Constructors

JSType()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

kJSTypeBoolean → const int
A primitive boolean value, one of true or false.
kJSTypeNull → const int
The unique null value.
kJSTypeNumber → const int
A primitive number value.
kJSTypeObject → const int
An object value (meaning that this JSValueRef is a JSObjectRef).
kJSTypeString → const int
A primitive string value.
kJSTypeSymbol → const int
A primitive symbol value.
kJSTypeUndefined → const int
The unique undefined value.