FieldInfo constructor
Implementation
FieldInfo(this.type, this.name, this.valueStr, this.isEnum)
: assert(
isEnum ||
type == "bool" ||
type == "int" ||
type == "String" ||
type == "double" ||
type == "StringList",
"$type is not supported. Supported data types: ${_supportedTypes.join(", ")}");