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