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