copyWith method
StoryStatistics
copyWith({
- StatisticalGraph? storyInteractionGraph,
- StatisticalGraph? storyReactionGraph,
Implementation
StoryStatistics copyWith({
StatisticalGraph? storyInteractionGraph,
StatisticalGraph? storyReactionGraph,
}) => StoryStatistics(
storyInteractionGraph: storyInteractionGraph ?? this.storyInteractionGraph,
storyReactionGraph: storyReactionGraph ?? this.storyReactionGraph,
);