labels property
Return the labels of the Media Stream that the Local Peer is producing to the room
Implementation
List<String> get labels {
final sendTransport = _sendTransport;
if (sendTransport != null) {
final labels = labelToProducerId.keys.toList();
return labels;
}
return <String>[];
}