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