Read the content of a file
String readFile(String path) { final file = File(path); final content = file.readAsStringSync(); return content; }