ElModel.all constructor

const ElModel.all({
  1. bool formJson = true,
  2. bool toJson = true,
  3. bool copyWith = true,
  4. bool merge = true,
  5. bool generateEquals = true,
  6. bool generateHashCode = true,
  7. bool generateToString = true,
  8. bool fromJsonDiff = false,
  9. bool toJsonUnderline = false,
})

默认开启所有功能

Implementation

const ElModel.all({
  this.formJson = true,
  this.toJson = true,
  this.copyWith = true,
  this.merge = true,
  this.generateEquals = true,
  this.generateHashCode = true,
  this.generateToString = true,
  this.fromJsonDiff = false,
  this.toJsonUnderline = false,
});