isBaseType static method

bool isBaseType(
  1. Property property
)

Implementation

static bool isBaseType(Property property) {
  if (isListType(property)) {
    return false;
  }
  if (isMapType(property)) {
    return false;
  }
  return javaMap.containsKey(property.type);
}