EasyCoderModelInfo constructor

EasyCoderModelInfo({
  1. String? outputFile,
  2. required List<String> importList,
  3. required List<String> classDesc,
  4. required String className,
  5. List<EasyCoderFieldInfo> constFields = const [],
  6. List<EasyCoderFieldInfo> classFields = const [],
  7. List<EasyCoderFieldInfo> extraFields = const [],
  8. String? wrapType,
  9. bool constMap = false,
  10. bool dirty = true,
  11. bool query = true,
})

Implementation

EasyCoderModelInfo({
  this.outputFile,
  required this.importList,
  required this.classDesc,
  required this.className,
  this.constFields = const [],
  this.classFields = const [],
  this.extraFields = const [],
  this.wrapType,
  this.constMap = false,
  this.dirty = true,
  this.query = true,
});