copyWith method
Implementation
MessageChatHasProtectedContentToggled copyWith({
int? requestMessageId,
bool? oldHasProtectedContent,
bool? newHasProtectedContent,
}) => MessageChatHasProtectedContentToggled(
requestMessageId: requestMessageId ?? this.requestMessageId,
oldHasProtectedContent:
oldHasProtectedContent ?? this.oldHasProtectedContent,
newHasProtectedContent:
newHasProtectedContent ?? this.newHasProtectedContent,
);