Serializable constructor

const Serializable({
  1. String? rename,
  2. String? discriminator,
  3. String? typeField,
  4. bool strict = false,
  5. JsonNaming naming = JsonNaming.none,
})

Implementation

const Serializable({
  this.rename,
  this.discriminator,
  this.typeField,
  this.strict = false,
  this.naming = JsonNaming.none,
});