Participant constructor
Participant(- {String? id,
- required String audioID,
- required String videoID,
- String? ScreenID,
- bool? ScreenOn,
- String? islevel,
- bool? isAdmin,
- bool? isHost,
- required String name,
- bool? muted,
- bool? isBanned,
- bool? isSuspended,
- bool? useBoard,
- int? breakRoom,
- bool? videoOn,
- bool? audioOn}
)
Implementation
Participant({
this.id,
required this.audioID,
required this.videoID,
this.ScreenID,
this.ScreenOn,
this.islevel,
this.isAdmin,
this.isHost,
required this.name,
this.muted,
this.isBanned,
this.isSuspended,
this.useBoard,
this.breakRoom,
this.videoOn,
this.audioOn,
});