currentPath property
PathWrapper<Path> ?
get
currentPath
The path which is currently using. 正在查看的资源路径
Implementation
PathWrapper<Path>? get currentPath => _currentPath;
set
currentPath
(PathWrapper<Path> ? value)
Implementation
set currentPath(PathWrapper<Path>? value) {
if (value == _currentPath) {
return;
}
_currentPath = value;
notifyListeners();
}