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