cellsToRemove property

int get cellsToRemove

Returns the number of cells to remove for this difficulty level.

Implementation

int get cellsToRemove {
  switch (this) {
    case DifficultyLevel.easy:
      return 30;
    case DifficultyLevel.medium:
      return 45;
    case DifficultyLevel.hard:
      return 55;
  }
}