factory JoinInfo.fromJson(Map<String, dynamic> json) { return JoinInfo( MeetingInfo.fromJson(json['meeting']), AttendeeInfo.fromJson(json['attendee']), ); }