NEStartRoomOptions constructor

NEStartRoomOptions({
  1. bool? noVideo,
  2. bool? noAudio,
  3. bool noCloudRecord = true,
  4. bool noChat = false,
})

Implementation

NEStartRoomOptions({
  bool? noVideo,
  bool? noAudio,
  this.noCloudRecord = true,
  this.noChat = false,
}) : super(
        noVideo: noVideo ?? true,
        noAudio: noAudio ?? true,
      );