FieldInterceptInfo constructor

const FieldInterceptInfo(
  1. String name,
  2. String type,
  3. bool typeIsNull,
  4. String keyName,
  5. String keyType,
  6. bool keyTypeIsNull,
  7. String? classCode,
  8. String? getFieldCode,
  9. String? setFieldCode,
  10. String? valueUpdateListenerFunCode,
)

构造函数,初始化所有字段

Implementation

const FieldInterceptInfo(
  this.name,
  this.type,
  this.typeIsNull,
  this.keyName,
  this.keyType,
  this.keyTypeIsNull,
  this.classCode,
  this.getFieldCode,
  this.setFieldCode,
  this.valueUpdateListenerFunCode,
);