JitsiMeetingOptions constructor

JitsiMeetingOptions({
  1. required String room,
  2. String? serverURL,
  3. String? subject,
  4. String? token,
  5. bool? audioMuted,
  6. bool? audioOnly,
  7. bool? videoMuted,
  8. String? userAvatarURL,
  9. String? userDisplayName,
  10. String? userEmail,
  11. String? iosAppBarRGBAColor,
  12. Map<String, Object?>? webOptions,
  13. Map<FeatureFlagEnum, Object?>? featureFlags,
  14. Map<String, Object?>? configOverrides,
})

Implementation

JitsiMeetingOptions({
  required this.room,
  this.serverURL,
  this.subject,
  this.token,
  this.audioMuted,
  this.audioOnly,
  this.videoMuted,
  this.userAvatarURL,
  this.userDisplayName,
  this.userEmail,
  this.iosAppBarRGBAColor,
  this.webOptions,
  this.featureFlags,
  this.configOverrides,
});