I need to convert List<String> into a String in the dart.
I want to extract the value of the list from preferences. I have tried this implementation but it is only giving me the last value.
Future<List<String>> services = SharedPrefSignUp.getSelectedServices(); services.then((onValue){ List<String>servicesList=onValue; selectServicesText=servicesList.join(","); });