copyWith method
Implementation
@override
MessageForwardOriginChat copyWith({
int? senderChatId,
String? authorSignature,
}) => MessageForwardOriginChat(
senderChatId: senderChatId ?? this.senderChatId,
authorSignature: authorSignature ?? this.authorSignature,
);