getHighscore method

int getHighscore (int level)

Returns the level specific highscore.

Implementation

int getHighscore(int level) {
  int hs = 0;
  String key = highscoreLevelKey + level.toString();
  if (this._localStorage.containsKey(key)) {
    hs = int.parse(this._localStorage[key]);
  }
  return hs;
}