Future<List<String>> lines() async { var lines = await openRead() .map(utf8.decode) .transform(const LineSplitter()) .toList(); return lines; }