skip method

FutureOr<Iterable<T>> skip(
  1. int count
)

Implementation

FutureOr<Iterable<T>> skip(int count) async {
  return (await this).skip(count);
}