take_ method

List<E> take_(
  1. int count
)

Take count items from the front of this list, returning the result as a list.

Implementation

List<E> take_(int count) => take(count).toList();