TemplateGamePuzzle constructor

TemplateGamePuzzle({
  1. required PropertyBasicInformation basicInformation,
  2. required PropertySingleImage singleImage,
  3. required PropertyGameHeaderTexts gameHeaderTexts,
  4. required PropertyGame gameProperties,
})

Implementation

TemplateGamePuzzle({
  required this.basicInformation,
  required this.singleImage,
  required this.gameHeaderTexts,
  required PropertyGame gameProperties,
}) {
  this.gameProperties = gameProperties;
}