isEntityType property

bool isEntityType

Returns true if type can be an entity (![isDynamicOrObject] && ![isBasicType]).

Implementation

bool get isEntityType => !isDynamicOrObject && !isBasicType;