stackLiftEnabled property Null safety

  1. @protected
bool stackLiftEnabled

Tell if stack lift is enabled. This is considered part of the controller's state, but note that the status from a running program reflects back to when a program isn't running. This is important for proper functioning of the R/S key, and SST. The value comes from the RealController.

Implementation

@protected
bool get stackLiftEnabled => controller._stackLiftEnabled;
  1. @protected
void stackLiftEnabled=(bool v)

Implementation

@protected
set stackLiftEnabled(bool v) => controller._stackLiftEnabled = v;