ListPropertyStream<T extends Object?> constructor

ListPropertyStream<T extends Object?>({
  1. required Future<List<T>> future,
  2. required JsonStreamParserController parserController,
  3. required String propertyPath,
})

Implementation

ListPropertyStream({
  required super.future,
  required super.parserController,
  required String propertyPath,
}) : _propertyPath = propertyPath;