isDogPrimitiveType function

bool isDogPrimitiveType(
  1. DartType type
)

Implementation

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