take method

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

Implementation

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