isNative static method
Implementation
static bool isNative(dynamic val) {
bool rtn = isPrimitive(val);
if (!rtn) {
rtn = val is Map || val is List || val is RegExp;
}
return rtn;
}
static bool isNative(dynamic val) {
bool rtn = isPrimitive(val);
if (!rtn) {
rtn = val is Map || val is List || val is RegExp;
}
return rtn;
}