isString property
bool
get
isString
Tests whether a JavaScript value's type is the string type.
Implementation
bool get isString {
return type == JSType.kJSTypeString;
// return JSValueIsString(context.ref, _ref);
}