📜  async* dart 代码示例

📅  最后修改于: 2022-03-11 14:48:06.709000             🧑  作者: Mango

代码示例1
What does async * mean in DART?

You add the async* keyword to make a function that returns 
a bunch of future values one at a time. The results are wrapped in a Stream.