PuzzleOptions constructor

PuzzleOptions({
  1. String? name,
  2. int? clues = 25,
  3. String? patternName = "random",
})

Constructs new PuzzleOptions - use me when constructing a new Puzzle

Implementation

PuzzleOptions(
    {String? name, int? clues = 25, String? patternName = "random"}) {
  this.name = name;
  this.clues = clues;
  this.patternName = patternName;
}