EasyCoderFieldInfo constructor

EasyCoderFieldInfo({
  1. required String type,
  2. required String name,
  3. required List<String> desc,
  4. bool secrecy = false,
  5. bool nullAble = false,
  6. bool wrapFlat = false,
  7. String? defVal,
  8. String? zhText,
  9. String? enText,
})

Implementation

EasyCoderFieldInfo({
  required this.type,
  required this.name,
  required this.desc,
  this.secrecy = false,
  this.nullAble = false,
  this.wrapFlat = false,
  this.defVal,
  this.zhText,
  this.enText,
});