Select Future or waitAny in Dart?
I understand that Future.wait takes a list of futures and returns a list of completed futures when all the futures in the list have completed.
Is there a way in Dart to block and wait until any future in a list has completed rather than waiting for them all to complete?