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