JitsiMeetingOptions constructor

JitsiMeetingOptions({
  1. required String roomNameOrUrl,
  2. String? serverUrl,
  3. String? subject,
  4. String? token,
  5. bool? isAudioMuted,
  6. bool? isAudioOnly,
  7. bool? isVideoMuted,
  8. String? userDisplayName,
  9. String? userEmail,
  10. String? userAvatarUrl,
  11. Map<String, Object?>? featureFlags,
  12. Map<String, Object?>? configOverrides,
})

Implementation

JitsiMeetingOptions({
  required this.roomNameOrUrl,
  this.serverUrl,
  this.subject,
  this.token,
  this.isAudioMuted,
  this.isAudioOnly,
  this.isVideoMuted,
  this.userDisplayName,
  this.userEmail,
  this.userAvatarUrl,
  this.featureFlags,
  this.configOverrides,
});