skip method

Future<Iterable<E>> skip(
  1. int count
)

Refer to Iterable.skip;

Implementation

Future<Iterable<E>> skip(int count) async => (await this).skip(count);