listToCommas method
Converts the array to one of the HTML styles.
For example, which uses coords attribute - 0, 0, 82, 126.
Input: 'a', 'b', 'c'.
Output: 'a, b, c'.
Implementation
String listToCommas(List<dynamic> list) {
return _listToSeparator(commaSep, list);
}