toListAsync method

FutureOr<List<T>> toListAsync({
  1. bool growable = true,
})

Implementation

FutureOr<List<T>> toListAsync({bool growable = true}) =>
    then((itr) => itr.toList());