isKnownDartType static method

bool isKnownDartType(
  1. String type
)

Implementation

static bool isKnownDartType(String type) {
  return type == 'DateTime' ||
      type == 'String' ||
      type == 'int' ||
      type == 'number' ||
      type == 'double' ||
      type == 'dynamic' ||
      type == 'bool';
}