DyteSelfParticipant constructor
DyteSelfParticipant(
- Map part
Implementation
DyteSelfParticipant(Map<dynamic,dynamic> part) {
this.id = part['id'];
this.name = part['name'];
this.picture = part['picture'];
this.audioEnabled = part['audioEnabled'];
this.videoEnabled = part['videoEnabled'];
this.isPinned = part['isPinned'];
}