copy static method
Implementation
static RtcpParameters copy(
RtcpParameters old, {
bool? mux,
String? cname,
bool? reducedSize,
}) {
return RtcpParameters(
mux: mux ?? old.mux,
cname: cname ?? old.cname,
reducedSize: reducedSize ?? old.reducedSize,
);
}