isDogPrimitiveType function
Implementation
bool isDogPrimitiveType(DartType type) {
return _stringChecker.isExactlyType(type) ||
_intChecker.isExactlyType(type) ||
_doubleChecker.isExactlyType(type) ||
_boolChecker.isExactlyType(type);
}