JoinInfo.fromJson constructor

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

Implementation

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