removeDir method

void removeDir(
  1. String path
)

Implementation

void removeDir(String path) {
  if (exists(path)) {
    deleteDir(path);
  }
}