79652586

Date: 2025-06-04 10:34:39
Score: 0.5
Natty:
Report link

With Dart 3 there's now a new & more convenient way.

You can now just do:
await (future0, future1).wait;

Or if you need the results you directly can unpack them like this:
final (result0, result1) = await (future0, future1).wait;

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: apatrck01