copyWith method
Implementation
ReportMessageReactions copyWith({
int? chatId,
int? messageId,
MessageSender? senderId,
}) =>
ReportMessageReactions(
chatId: chatId ?? this.chatId,
messageId: messageId ?? this.messageId,
senderId: senderId ?? this.senderId,
);