isBaseType static method
判断变量是否是基本数据类型
Implementation
static bool isBaseType(dynamic value) {
return (value is num || value is String || value is bool);
}
判断变量是否是基本数据类型
static bool isBaseType(dynamic value) {
return (value is num || value is String || value is bool);
}