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