SkipLastStreamTransformer<T> constructor
SkipLastStreamTransformer<T> (
- int count
Constructs a StreamTransformer which skip the last count
items
emitted by the source Stream
Implementation
SkipLastStreamTransformer(this.count) {
if (count < 0) throw ArgumentError.value(count, 'count');
}