isPrimitiveType property

bool isPrimitiveType

Returns true if type is String, int, double, num or bool.

Implementation

bool get isPrimitiveType =>
    isStringType || isIntType || isDoubleType || isNumType || isBoolType;