Model constructor

const Model({
  1. bool documentation = true,
  2. bool withFields = true,
  3. bool withConstructor = true,
  4. bool withFromMap = true,
  5. bool withFromJson = true,
  6. bool withToJson = true,
  7. bool withToMap = true,
  8. bool withMutate = true,
  9. bool withHashCode = true,
  10. bool withEquals = true,
  11. bool withToString = true,
  12. bool withMirror = true,
})

Implementation

const Model({
  this.documentation = true,
  this.withFields = true,
  this.withConstructor = true,
  this.withFromMap = true,
  this.withFromJson = true,
  this.withToJson = true,
  this.withToMap = true,
  this.withMutate = true,
  this.withHashCode = true,
  this.withEquals = true,
  this.withToString = true,
  this.withMirror = true
});