isDartCoreType property

bool isDartCoreType

If this is a bool, DateTime, double, int, num, or String

Implementation

bool get isDartCoreType => isBool || isDateTime || isDouble || isInt || isNum || isString;