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