JsonProperty constructor

const JsonProperty({
  1. bool? ignore,
  2. String? name,
  3. dynamic defaultValue,
})

Implementation

const JsonProperty({
  this.ignore,
  this.name,
  this.defaultValue,
});