Fix bug
This commit is contained in:
parent
c99d1e4d67
commit
a77c86e87a
@ -65,7 +65,8 @@ class InvitationInfo {
|
|||||||
/// 平台[Platform]
|
/// 平台[Platform]
|
||||||
int? platformID;
|
int? platformID;
|
||||||
|
|
||||||
InvitationInfo({this.inviterUserID,
|
InvitationInfo(
|
||||||
|
{this.inviterUserID,
|
||||||
this.inviteeUserIDList,
|
this.inviteeUserIDList,
|
||||||
this.groupID,
|
this.groupID,
|
||||||
this.roomID,
|
this.roomID,
|
||||||
@ -127,9 +128,9 @@ class SignalingCertificate {
|
|||||||
token = json['token'];
|
token = json['token'];
|
||||||
roomID = json['roomID'];
|
roomID = json['roomID'];
|
||||||
liveURL = json['liveURL'];
|
liveURL = json['liveURL'];
|
||||||
busyLineUserIDList =
|
busyLineUserIDList = null == json['busyLineUserIDList']
|
||||||
null == json['busyLineUserIDList'] ? null : json['busyLineUserIDList'].cast<
|
? null
|
||||||
String>();
|
: json['busyLineUserIDList'].cast<String>();
|
||||||
}
|
}
|
||||||
|
|
||||||
Map<String, dynamic> toJson() {
|
Map<String, dynamic> toJson() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user