JoinLocalEventRoomParameters.fromJson constructor
Implementation
factory JoinLocalEventRoomParameters.fromJson(Map<String, dynamic> json) {
return JoinLocalEventRoomParameters(
eventID: json['eventID'],
userName: json['userName'],
secureCode: json['secureCode'],
videoPreference: json['videoPreference'],
audioPreference: json['audioPreference'],
audioOutputPreference: json['audioOutputPreference'],
);
}