DyteParticipant constructor

DyteParticipant(
  1. Map part
)

Implementation

DyteParticipant(Map<dynamic,dynamic> part)  {
  this.id = part['id'];
  this.name = part['name'];
  this.picture = part['picture']??'';
  this.clientSpecificId = part['clientSpecificId']??'';
  this.audioEnabled = part['audioEnabled']??false;
  this.videoEnabled = part['videoEnabled']??false;
  this.isPinned = part['isPinned']??false;
}