toList method

Future<List<E>> toList({
  1. bool growable = true,
})

Refer to Iterable.toList;

Implementation

Future<List<E>> toList({bool growable: true}) async {
  return (await this).toList(growable: growable);
}