void createFileWithContent(String path, String content) { final file = File(path); file.writeAsStringSync(content); }