copyWith method

StoryInteractionInfo copyWith({
  1. int? viewCount,
  2. int? forwardCount,
  3. int? reactionCount,
  4. List<int>? recentViewerUserIds,
})

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,
);