copyWith method
Implementation
LinkPreviewTypeVideoChat copyWith({
ChatPhoto? photo,
bool? isLiveStream,
bool? joinsAsSpeaker,
}) => LinkPreviewTypeVideoChat(
photo: photo ?? this.photo,
isLiveStream: isLiveStream ?? this.isLiveStream,
joinsAsSpeaker: joinsAsSpeaker ?? this.joinsAsSpeaker,
);