isSwitchingPath property

bool isSwitchingPath

Implementation

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

Implementation

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