copyWith method Null safety
Implementation
RTCIceServer copyWith({
String? username,
String? credential,
String? urls,
}) {
return RTCIceServer(
username: username ?? this.username,
credential: credential ?? this.credential,
urls: urls ?? this.urls,
);
}