PRIMITIVE_TYPES top-level constant
Implementation
const Map<String, bool> PRIMITIVE_TYPES = const {
'int': true,
'double': true,
'String': true,
'bool': true,
'DateTime': false,
'List<DateTime>': false,
'List<int>': true,
'List<double>': true,
'List<String>': true,
'List<bool>': true,
'Null': true,
};