JsonKeyInfo constructor

JsonKeyInfo({
  1. String? name,
  2. bool? ignore,
  3. dynamic defaultValue,
  4. bool? required,
  5. bool? includeIfNull,
  6. bool? includeFromJson,
  7. bool? includeToJson,
  8. String? toJson,
  9. String? fromJson,
})

Implementation

JsonKeyInfo({
  this.name,
  this.ignore,
  this.defaultValue,
  this.required,
  this.includeIfNull,
  this.includeFromJson,
  this.includeToJson,
  this.toJson,
  this.fromJson,
});