currentPathEntity property
Path?
get
currentPathEntity
Implementation
Path? get currentPathEntity => _currentPathEntity;
set
currentPathEntity
(Path? value)
Implementation
set currentPathEntity(Path? value) {
if (value == null || value == _currentPathEntity) {
return;
}
_currentPathEntity = value;
if(mounted){
notifyListeners();
}
}