JsonDecodingContext constructor

JsonDecodingContext({
  1. JsonSettings jsonSettings = const JsonSettings(),
  2. KindLibrary? kindLibrary,
  3. bool reactive = true,
  4. Namer? namer,
})

Implementation

JsonDecodingContext({
  this.jsonSettings = const JsonSettings(),
  KindLibrary? kindLibrary,
  bool reactive = true,
  Namer? namer,
}) : super(
        kindLibrary: kindLibrary,
        reactive: reactive,
        namer: namer,
      );