LivepeerParticipant.fromJson constructor

LivepeerParticipant.fromJson(
  1. Map<String, dynamic> json
)

Implementation

LivepeerParticipant.fromJson(Map<String, dynamic> json) {
  id = json['id'];
  joinUrl = json['joinUrl'];
  token = json['token'];
}