getCid method

String getCid()

Implementation

String getCid() {
  var cid = _cid ?? mediaStreamTrack.id;

  if (cid == null) {
    cid = uuid.v4();
    _cid = cid;
  }
  return cid;
}