collectionToCommaDelimitedString static method

String collectionToCommaDelimitedString(
  1. Iterable? collection
)

Convert collection to comma delimited string

Implementation

static String collectionToCommaDelimitedString(Iterable? collection) {
  return collectionToDelimitedString(collection, ',');
}