isDir static method

bool isDir(
  1. String dirPath
)

Implementation

static bool isDir(String dirPath) {
  final dir = Directory(dirPath);
  return dir.existsSync() && dir.statSync().type == FileSystemEntityType.directory;
}