CsvToListConverter adds extra rows for empty newlines at end of file. Would it make sense to skip these empty rows? I fixed it by doing: ``` rows.removeWhere((row) => row.length == 1 && row.first == ''); ``` EDIT: or just call `trim()` on String ..