removeFile method

void removeFile(
  1. String path
)

Implementation

void removeFile(String path) {
  if (exists(path)) {
    delete(path);
  }
}