FieldInfo constructor
FieldInfo()
构造函数
Implementation
FieldInfo(
this.name,
this.keyName,
this.type,
this.typeIsNull,
this.defaultValue,
this.isSet,
) {
toMap = {
'type': type,
'typeIsNull': typeIsNull,
'keyName': keyName,
'name': name,
'defaultValue': defaultValue,
'isSet': isSet,
'isIntercept': false,
};
}