isUndefined property
bool
get
isUndefined
Tests whether a JavaScript value's type is the undefined type.
Implementation
bool get isUndefined {
return type == JSType.kJSTypeUndefined;
// return JSValueIsUndefined(context.ref, _ref);
}