copyWith method

DyteLiveStreamStageRequestPeer copyWith({
  1. String? peerId,
  2. String? userId,
  3. String? displayName,
})

Implementation

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