isBasicType property
bool
get
isBasicType
True for num, String, bool, int, double.
Implementation
bool get isBasicType {
if (this == num ||
this == String ||
this == bool ||
this == int ||
this == double) {
return true;
}
return false;
}