copyWith method
Implementation
DyteLiveStreamStageRequestPeer copyWith({
String? peerId,
String? userId,
String? displayName,
}) {
return DyteLiveStreamStageRequestPeer(
peerId: peerId ?? this.peerId,
userId: userId ?? this.userId,
displayName: displayName ?? this.displayName,
);
}