You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import 'dart:async';
|
|
|
|
|
|
|
|
Stream<List<T>> listifyStream<T>(Stream<T> stream) async* {
|
|
|
|
List<T> list = [];
|
|
|
|
|
|
|
|
await for (T item in stream) {
|
|
|
|
list.add(item);
|
|
|
|
yield list;
|
|
|
|
}
|
|
|
|
}
|