copyWith method
ChatStatisticsInteractionInfo
copyWith({
- ChatStatisticsObjectType? objectType,
- int? viewCount,
- int? forwardCount,
- int? reactionCount,
Implementation
ChatStatisticsInteractionInfo copyWith({
ChatStatisticsObjectType? objectType,
int? viewCount,
int? forwardCount,
int? reactionCount,
}) => ChatStatisticsInteractionInfo(
objectType: objectType ?? this.objectType,
viewCount: viewCount ?? this.viewCount,
forwardCount: forwardCount ?? this.forwardCount,
reactionCount: reactionCount ?? this.reactionCount,
);