parseCsv function
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);