SignalingCertificate.fromJson constructor

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

Implementation

SignalingCertificate.fromJson(Map<String, dynamic> json) {
  token = json['token'];
  roomID = json['roomID'];
  liveURL = json['liveURL'];
  busyLineUserIDList = null == json['busyLineUserIDList']
      ? null
      : json['busyLineUserIDList'].cast<String>();
}