检查传入的类型字符串是否是基本类型字符串
static bool isBaseTypeString(String typeString) { return ['String', 'num', 'int', 'double', 'bool'].contains(typeString); }