24 lines
749 B
Dart
24 lines
749 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'game_info_recommend_bean.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
GameInfoRecommendBean _$GameInfoRecommendBeanFromJson(
|
|
Map<String, dynamic> json) =>
|
|
GameInfoRecommendBean(
|
|
json['gameId'] as String?,
|
|
json['gameName'] as String?,
|
|
json['gameIconImage'] as String?,
|
|
);
|
|
|
|
Map<String, dynamic> _$GameInfoRecommendBeanToJson(
|
|
GameInfoRecommendBean instance) =>
|
|
<String, dynamic>{
|
|
'gameId': instance.gameId,
|
|
'gameName': instance.gameName,
|
|
'gameIconImage': instance.gameIconImage,
|
|
};
|