async gives you a Future and async* gives you a Stream . When users marks a function as async or async* allows it to use async/await keyword to use a Future.
async gives you a Future and async* gives you a Stream . When users marks a function as async or async* allows it to use async/await keyword to use a Future.