currentPathEntity property

Path? currentPathEntity

Implementation

Path? get currentPathEntity => _currentPathEntity;
void currentPathEntity=(Path? value)

Implementation

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