StringPropertyStreamController constructor

StringPropertyStreamController({
  1. required JsonStreamParserController parserController,
  2. required String propertyPath,
})

Implementation

StringPropertyStreamController({
  required super.parserController,
  required super.propertyPath,
}) {
  propertyStream = StringPropertyStream(
    stream: streamController.stream,
    future: completer.future,
    parserController: parserController,
  );
}