defaultPath property

String get defaultPath

Gets or sets the default path.

Implementation

String get defaultPath => _defaultPath;
set defaultPath (String path)

Implementation

set defaultPath(String path) {
  if (find(path) == null) {
    throw Exception('Default path not found: $path');
  }
  _defaultPath = path;
}