I know how Future.wait works
await Future.wait([
functionA(),
functionB()
]).then((data) {
});
but what I want to know is
What if the number of functions is not fixed and the number of functions to be called varies depending on the situation? (the functions are all the same.)
variable>]);? and how to set parameters differently??
– dontknowhy Jun 02 '21 at 01:35