ContinuousJsonDecoder constructor

const ContinuousJsonDecoder([
  1. Object? reviver(
    1. Object? key,
    2. Object? value
    )?
])

Constructs a new JsonDecoder.

The reviver may be null.

Implementation

const ContinuousJsonDecoder(
    [Object? Function(Object? key, Object? value)? reviver])
    : _reviver = reviver;