import 'package:json_annotation/json_annotation.dart'; import 'game_tag_bean.dart'; part 'game_info_bean.g.dart'; /// @JsonSerializable(explicitToJson: true) class GameInfoBean { String? gameId; String? gameName; String? subtitle; String? gameDetailsofCharges; String? gameIcon; String? gameBg; List? gameTags; String? score; int? gameLoadTime; String? gameIntroduce; String? gameShare; String? gameShareUserIcon; bool? isCollect; GameInfoBean(this.gameId, this.gameName, this.subtitle, this.gameDetailsofCharges, this.gameIcon, this.gameBg, this.gameTags, this.score, this.gameLoadTime, this.gameIntroduce, this.gameShare, this.gameShareUserIcon,this.isCollect); factory GameInfoBean.fromJson(Map json) => _$GameInfoBeanFromJson(json); Map toJson() => _$GameInfoBeanToJson(this); }