true if the given path is a directory.
bool isDirectory(String path) { final fromType = FileSystemEntity.typeSync(path); return fromType == FileSystemEntityType.directory; }