JitsiRemoteTrack constructor

JitsiRemoteTrack(
  1. Map map
)

Implementation

JitsiRemoteTrack(Map<dynamic, dynamic> map) {
    this.type = map["type"];
    this.participantId = map["participantId"];
    this.id = map["id"];
    this.muted = map["muted"];
    this.streamURL = map["streamURL"];
}