NERoomOptions constructor

NERoomOptions({
  1. bool noVideo = true,
  2. bool noAudio = true,
  3. NERoomAudioProfile? audioProfile,
  4. Map<String, dynamic> extras = const <String, dynamic>{},
})

Implementation

NERoomOptions({
  this.noVideo = true,
  this.noAudio = true,
  this.audioProfile,
  this.extras = const <String, dynamic>{},
});