JsonStreamParserController constructor

JsonStreamParserController({
  1. required void addPropertyChunk<T>({
    1. required T chunk,
    2. required String propertyPath,
    }),
  2. required PropertyStreamController getPropertyStreamController(
    1. String propertyPath
    ),
  3. required PropertyStream getPropertyStream(
    1. String propertyPath,
    2. Type streamType
    ),
})

Implementation

JsonStreamParserController({
  required this.addPropertyChunk,
  required this.getPropertyStreamController,
  required this.getPropertyStream,
});