isDirectory property

bool? get isDirectory

True if it is a directory. Must be provided if requested in options.

Implementation

bool? get isDirectory => _wrapped.isDirectory;
set isDirectory (bool? v)

Implementation

set isDirectory(bool? v) {
  _wrapped.isDirectory = v;
}