copyWith method
Implementation
ChatStatisticsMessageInteractionInfo copyWith({
int? messageId,
int? viewCount,
int? forwardCount,
}) => ChatStatisticsMessageInteractionInfo(
messageId: messageId ?? this.messageId,
viewCount: viewCount ?? this.viewCount,
forwardCount: forwardCount ?? this.forwardCount,
);