import 'package:json_annotation/json_annotation.dart'; part 'game_info_recommend_bean.g.dart'; /// @JsonSerializable(explicitToJson: true) class GameInfoRecommendBean { String? gameId; String? gameName; String? gameIconImage; GameInfoRecommendBean(this.gameId, this.gameName, this.gameIconImage); factory GameInfoRecommendBean.fromJson(Map json) => _$GameInfoRecommendBeanFromJson(json); Map toJson() => _$GameInfoRecommendBeanToJson(this); }