NEJoinRoomOptions constructor Null safety

NEJoinRoomOptions(
  1. {bool noVideo = true,
  2. bool noAudio = true,
  3. Map<String, dynamic> extras = const <String, dynamic>{}}
)

Implementation

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