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