setActiveLevel method
Sets the _activeLevel
to the passed integer value. If this value is bigger
than the _reachedLevel
then the reached level will be increased accordingly.
Implementation
void setActiveLevel(int activeLevel) {
this._activeLevel = activeLevel;
if (activeLevel > this.getReachedLevel()) {
this.setReachedLevel(activeLevel);
}
}