currentPath property

PathWrapper<Path>? currentPath

The path which is currently using. 正在查看的资源路径

Implementation

PathWrapper<Path>? get currentPath => _currentPath;
void currentPath=(PathWrapper<Path>? value)

Implementation

set currentPath(PathWrapper<Path>? value) {
  if (value == _currentPath) {
    return;
  }
  _currentPath = value;
  notifyListeners();
}