toCsv method

String toCsv(
  1. Iterable<T> value
)

Encodes a list of objects into a CSV string.

Implementation

String toCsv(Iterable<T> value) {
  return CsvEncoder.encode(value, using: list());
}