CreateTransportOnClient constructor

CreateTransportOnClient({
  1. String? transportType,
  2. ProtoTransportSDPInfo? transportSDPInfo,
})

Implementation

factory CreateTransportOnClient({
  $core.String? transportType,
  $1.ProtoTransportSDPInfo? transportSDPInfo,
}) {
  final $result = create();
  if (transportType != null) {
    $result.transportType = transportType;
  }
  if (transportSDPInfo != null) {
    $result.transportSDPInfo = transportSDPInfo;
  }
  return $result;
}