MeetingInfo.fromJson constructor

MeetingInfo.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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