Read file as lines
static Future<List<String>> readLines(String path) async { final content = await readFile(path); return content.split('\n'); }