MeetingInfo.fromJson constructor
MeetingInfo.fromJson(
- Map<String, dynamic> map
)
Implementation
MeetingInfo.fromJson(Map<String, dynamic> map)
: id = map['ID'],
pswd = map['pswd'],
hostPswd = map['hostPswd'],
subject = map['subject'],
pubMeetUrl = map['pubMeetUrl'],
startTime = map['startTime'],
endTime = map['endTime'],
scheduleTime = map['scheduleTime'],
hostName = map['hostName'],
owner = map['owner'],
maxMember = map['maxMember'],
memberCount = map['memberCount'],
isFixed = map['isFixed'],
status = map['status'],
confType = map['confType'],
meetPSTNPhoneNumber = map['meetPSTNPhoneNumber'],
meetPSTNPswd = map['meetPSTNPswd'],
ownerID = map['ownerID'],
meetOrderCfg = map['meetOrderCfg'] != null
? MeetOrderCfg.fromJson(map['meetOrderCfg'])
: null,
meetAttrs = map['meetAttrs'] != null
? MeetAttributes.fromJson(map['meetAttrs'])
: null,
meetPerms = map['meetPerms'] != null
? MeetPermissions.fromJson(map['meetPerms'])
: null;