Json constructor

const Json({
  1. int? allowCircularReferences,
  2. Map<Type, ValueDecoratorFunction> valueDecorators()?,
  3. dynamic scheme,
  4. String? discriminatorProperty,
  5. dynamic discriminatorValue,
  6. CaseStyle? caseStyle,
  7. bool? ignoreNullMembers,
  8. bool? ignoreDefaultMembers,
  9. bool? processAnnotatedMembersOnly,
  10. String? name,
})

Implementation

const Json(
    {this.allowCircularReferences,
    this.valueDecorators,
    this.scheme,
    this.discriminatorProperty,
    this.discriminatorValue,
    this.caseStyle,
    this.ignoreNullMembers,
    this.ignoreDefaultMembers,
    this.processAnnotatedMembersOnly,
    this.name});