You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Future<void> foo(Future<List<int>> future) async {
final controller =StreamController<int>();
for (final i in controller.stream) {}
for (final l in future) {}
}
For both cases, we could have the Add await fix. The first case only needs to insert it before for.