Flutter Future.wait() waits for multiple futures to complete and collects their results. Returns a future which will complete once all the provided futures have completed. The value of the returned future will be a list of all the values that were produced. If any future completes with an error, then the returned future completes with that error.
#Flutter #Dart #FutureWait