writable property

bool get writable

Whether the file system supports operations which may change contents of the file system (such as creating, deleting or writing to files).

Implementation

bool get writable => _wrapped.writable;
set writable (bool v)

Implementation

set writable(bool v) {
  _wrapped.writable = v;
}