JsonlMappedDecoder<T> constructor

const JsonlMappedDecoder<T>(
  1. T? fromJson(
    1. dynamic
    ), {
  2. bool ignoreExceptions = false,
  3. Codec<Object?, String> jsonCodec = const JsonCodec(),
  4. void onDone()?,
})

Implementation

const JsonlMappedDecoder(
  this.fromJson, {
  this.ignoreExceptions = false,
  this.jsonCodec = const JsonCodec(),
  this.onDone,
});