listToSpaces method
Converts the array to one of the HTML styles.
For example, which uses class attribute: name1 name2.
Input: 'a', 'b', 'c'.
Output: 'a b c'.
Implementation
String listToSpaces(List<dynamic> list) {
return _listToSeparator(spaceSep, list);
}