JsonMapperAdapter constructor

const JsonMapperAdapter({
  1. Map<Type, ICustomConverter> converters = const {},
  2. Map<Type, ValueDecoratorFunction> valueDecorators = const {},
  3. Map<int, ITypeInfoDecorator> typeInfoDecorators = const {},
  4. Map<Type, dynamic> enumValues = const {},
  5. Map<Symbol, String>? memberSymbolMap,
  6. Map<Reflectable, ReflectorData>? reflectableData,
  7. String title = 'JsonMapperAdapter',
  8. String? refUrl,
  9. String url = 'https://github.com/k-paxian/dart-json-mapper/tree/master/adapters',
})

Implementation

const JsonMapperAdapter(
    {this.converters = const {},
    this.valueDecorators = const {},
    this.typeInfoDecorators = const {},
    this.enumValues = const {},
    this.memberSymbolMap,
    this.reflectableData,
    this.title = 'JsonMapperAdapter',
    this.refUrl,
    this.url =
        'https://github.com/k-paxian/dart-json-mapper/tree/master/adapters'});