fix: 直播详情页传参

This commit is contained in:
guozhigq
2023-07-19 19:55:39 +08:00
parent 5abb483b2b
commit 04c90830bb
5 changed files with 15 additions and 7 deletions

View File

@ -71,6 +71,7 @@ class LiveRoom {
this.cover,
this.roomId,
this.roundStatus,
this.watchedShow,
});
int? roomStatus;
@ -80,6 +81,7 @@ class LiveRoom {
String? cover;
int? roomId;
int? roundStatus;
Map? watchedShow;
LiveRoom.fromJson(Map<String, dynamic> json) {
roomStatus = json['roomStatus'];
@ -89,5 +91,6 @@ class LiveRoom {
cover = json['cover'];
roomId = json['roomid'];
roundStatus = json['roundStatus'];
watchedShow = json['watched_show'];
}
}