TemplateGameImageDifferences.fromJson constructor

TemplateGameImageDifferences.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory TemplateGameImageDifferences.fromJson(Map<String, dynamic> json) => TemplateGameImageDifferences(
      basicInformation: PropertyBasicInformation.fromJson(json['basic_information']),
      gameHeaderTexts: PropertyGameHeaderTexts.fromJson(json['game_header_texts']),
      imagesBetweenDifferences: PropertyImagesBetweenDifferences.fromJson(json['images_between_differences']),
      gameProperties: PropertyGame.fromJson(json['game_properties']),
    );