removeFile method
Removes a file if it exists
path - File path to remove
Implementation
void removeFile(String path) {
if (exists(path)) {
delete(path);
}
}
Removes a file if it exists
path - File path to remove
void removeFile(String path) {
if (exists(path)) {
delete(path);
}
}