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