RunningController constructor Null safety
- RealController real,
 - {bool digitEntryState = false}
 
Implementation
RunningController(this.real, {bool digitEntryState = false}) {
  if (digitEntryState) {
    state = DigitEntry(this);
  } else {
    state = Resting(this);
  }
}