Convertir une liste en chaîne en flottement

 List<String> list =["one", "Two", "Thee"];
 print(list.join(","));  // Output will be like this : one,Two,Thee
Long Loris