listToSpaces method

String listToSpaces(
  1. List list
)

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);
}