Creates a file at the given path with the provided content.
path
content
static void createFile(String path, String content) { final file = File(path); file.writeAsStringSync(content); }