parseCsv function

List<List<String>> parseCsv(
  1. String buffer, {
  2. String fieldSep = ',',
  3. String textSep = '"',
  4. bool multiline = true,
})

Parses the given CSV buffer

Implementation

List<List<String>> parseCsv(String buffer,
        {String fieldSep = ',', String textSep = '"', bool multiline = true}) =>
    CsvParser(fieldSep: fieldSep, textSep: textSep, multiline: multiline)
        .convert(buffer);