take method

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

Refer to Iterable.take;

Implementation

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