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