Skip to content

Latest commit

 

History

History
7 lines (7 loc) · 114 Bytes

count_stream.dart.md

File metadata and controls

7 lines (7 loc) · 114 Bytes
Stream<int> countStream(int max) async* {
    for (int i = 0; i < max; i++) {
        yield i;
    }
}