isDir static method

bool isDir(
  1. String path
)

Implementation

static bool isDir(String path) {
  return Directory(path).existsSync();
}