isSwitchingPath property

bool get isSwitchingPath

Implementation

bool get isSwitchingPath => _isSwitchingPath;
set isSwitchingPath (bool value)

Implementation

set isSwitchingPath(bool value) {
  if (value == _isSwitchingPath) {
    return;
  }
  _isSwitchingPath = value;
  notifyListeners();
}