copyWith method
Implementation
@override
UpdateChatVideoChat copyWith({
int? chatId,
VideoChat? videoChat,
dynamic extra,
int? clientId,
}) => UpdateChatVideoChat(
chatId: chatId ?? this.chatId,
videoChat: videoChat ?? this.videoChat,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);