currentPath property

Path? currentPath

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

Implementation

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

Implementation

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