JSONAccessor constructor

JSONAccessor({
  1. required String name,
  2. required Type type,
  3. int index = 0,
  4. Function? containerConstructor,
  5. bool includeNull = true,
  6. Object? defaultValue = JSONAccessor,
  7. Converter? convert,
})

Implementation

JSONAccessor({required super.name, required super.type, super.index=0, this.containerConstructor, this.includeNull = true, this.defaultValue = JSONAccessor, this.convert});