import 'package:PiliPlus/models_new/live/live_feed_index/watched_show.dart'; import 'package:PiliPlus/models_new/live/live_room_info_h5/anchor_info.dart'; import 'package:PiliPlus/models_new/live/live_room_info_h5/room_info.dart'; class RoomInfoH5Data { RoomInfo? roomInfo; AnchorInfo? anchorInfo; WatchedShow? watchedShow; RoomInfoH5Data({ this.roomInfo, this.anchorInfo, this.watchedShow, }); factory RoomInfoH5Data.fromJson(Map json) => RoomInfoH5Data( roomInfo: json['room_info'] == null ? null : RoomInfo.fromJson(json['room_info'] as Map), anchorInfo: json['anchor_info'] == null ? null : AnchorInfo.fromJson(json['anchor_info'] as Map), watchedShow: json['watched_show'] == null ? null : WatchedShow.fromJson(json['watched_show'] as Map), ); }