SkipLastStreamTransformer<T> constructor

SkipLastStreamTransformer<T>(
  1. 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');
}