DropRange<T> constructor
Creates a DropRange that skips the first _count elements of _iterable.
Implementation
DropRange(this._iterable, this._count) {
if (_count < 0) {
throw ArgumentError.value(
_count,
'count',
'Must be greater than or equal to zero',
);
}
}