skip method

Future<int> skip(
  1. int count
)

Skips the next count events in the dataQueue

The count must be non-negative.

Implementation

Future<int> skip(int count) {
  RangeError.checkNotNegative(count, 'count');
  return dataQueue.execute<int>(SkipCommand(count));
}