void createFile(String path, String content) { final File file = File(path); if (!file.existsSync()) { file.writeAsStringSync(content); } }