TakeWhileInclusiveStreamTransformer<S> constructor

TakeWhileInclusiveStreamTransformer<S>(
  1. bool test(
    1. S
    )
)

Constructs a StreamTransformer which forwards data events while test is successful, and includes last event that caused test to return false.

Implementation

TakeWhileInclusiveStreamTransformer(this.test);