fromCsv method

List<T> fromCsv(
  1. String csv
)

Decodes a CSV string into a list of objects.

Implementation

List<T> fromCsv(String csv) {
  return CsvDecoder.decode(csv, list());
}