import 'package:json_annotation/json_annotation.dart'; import 'game_play_times_bean.dart'; part 'game_play_time_bean.g.dart'; /// @JsonSerializable(explicitToJson: true) class GamePlayTimeBean { List? gamePlayTimes; GamePlayTimeBeans? userGamePlayTime; GamePlayTimeBean(this.gamePlayTimes, this.userGamePlayTime); factory GamePlayTimeBean.fromJson(Map json) => _$GamePlayTimeBeanFromJson(json); Map toJson() => _$GamePlayTimeBeanToJson(this); }