CubeMeetingAttendee.fromJson constructor

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

Implementation

CubeMeetingAttendee.fromJson(Map<String, dynamic> json) {
  userId = json['id'];
  email = json['email'];
}