FieldInfo constructor

FieldInfo(
  1. String name,
  2. String keyName,
  3. String type,
  4. bool typeIsNull,
  5. String defaultValue,
  6. bool isSet,
)

构造函数

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,
  };
}