As per the new Structured Concurrency in Swift, we can await a API call which is done in an async context, But I want to make multiple API calls simultaneously, for example, currently If add the API calls one after another,
profileData = await viewModel.getProfileData()
userCardData = await viewModel.getCardDetails()
The problem in the above case is CardDetails is fetched only after fetching the profile data.