isEntityType property

bool isEntityType

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

Implementation

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