import 'dart:async'; Stream> listifyStream(Stream stream) async* { List list = List(); await for (T item in stream) { list.add(item); yield list; } }