MeetingInfo.fromJson constructor
Implementation
factory MeetingInfo.fromJson(Map<String, dynamic> json) {
return MeetingInfo(
json['MeetingId'],
json['ExternalMeetingId'],
json['MediaRegion'],
MediaPlacement.fromJson(json['MediaPlacement']),
);
}