void overwriteFile(String filePath, String fileData) { final File fileObj = File(filePath); fileObj.writeAsString(fileData); }