Flutter – Waiting for an asynchronous function call return from multiple synchronous function calls
I have an async function which is called multiple times synchoronusly. List response = await Future.wait([future, future]) Inside, it popups a form and waiting for it to be submitted or cancelled. var val = await Navigator.push( context, MaterialPageRoute(builder : (context)…