Participant constructor

Participant(
  1. {String? id,
  2. required String audioID,
  3. required String videoID,
  4. String? ScreenID,
  5. bool? ScreenOn,
  6. String? islevel,
  7. bool? isAdmin,
  8. bool? isHost,
  9. required String name,
  10. bool? muted,
  11. bool? isBanned,
  12. bool? isSuspended,
  13. bool? useBoard,
  14. int? breakRoom,
  15. bool? videoOn,
  16. 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,
});