Prepends a value to the source Stream.
Stream.fromIterable([2]).startWith(1).listen(print); // prints 1, 2
Stream<T> startWith(T startValue) => transform(StartWithStreamTransformer<T>(startValue));