copyWith method
Implementation
StoryInteractionInfo copyWith({
int? viewCount,
int? forwardCount,
int? reactionCount,
List<int>? recentViewerUserIds,
}) => StoryInteractionInfo(
viewCount: viewCount ?? this.viewCount,
forwardCount: forwardCount ?? this.forwardCount,
reactionCount: reactionCount ?? this.reactionCount,
recentViewerUserIds: recentViewerUserIds ?? this.recentViewerUserIds,
);