Future parseFile(String path) { return File(path) .openRead() .transform(utf8.decoder) .transform(LineSplitter()) .forEach(_parseLine); }