JoinLocalEventRoomParameters constructor

JoinLocalEventRoomParameters(
  1. {required String eventID,
  2. required String userName,
  3. String? secureCode,
  4. String? videoPreference,
  5. String? audioPreference,
  6. String? audioOutputPreference}
)

Implementation

JoinLocalEventRoomParameters({
  required this.eventID,
  required this.userName,
  this.secureCode,
  this.videoPreference,
  this.audioPreference,
  this.audioOutputPreference,
});