ListStreamOutput<T> constructor

ListStreamOutput<T>(
  1. Stream<List<T>> source, {
  2. required List<T> seedValue,
  3. required String semantics,
  4. bool sync = true,
  5. bool printLog = true,
  6. bool isBehavior = true,
  7. List<T> onReset()?,
  8. PersistConfig<List<T>>? persistConfig,
  9. bool skipError = false,
})

Implementation

ListStreamOutput(
  super.source, {
  required super.seedValue,
  required super.semantics,
  super.sync = true,
  super.printLog = true,
  super.isBehavior = true,
  super.onReset,
  super.persistConfig,
  super.skipError,
});