copyWith method
Implementation
UpdateChatHasProtectedContent copyWith({
int? chatId,
bool? hasProtectedContent,
}) => UpdateChatHasProtectedContent(
chatId: chatId ?? this.chatId,
hasProtectedContent: hasProtectedContent ?? this.hasProtectedContent,
);