StateStream<T> constructor

const StateStream<T>(
  1. Stream<T?> stream,
  2. T mapper()
)

Implementation

const StateStream(
  this.stream,
  this.mapper,
);