copyWith method
Implementation
StoryInteractions copyWith({
int? totalCount,
int? totalForwardCount,
int? totalReactionCount,
List<StoryInteraction>? interactions,
String? nextOffset,
}) => StoryInteractions(
totalCount: totalCount ?? this.totalCount,
totalForwardCount: totalForwardCount ?? this.totalForwardCount,
totalReactionCount: totalReactionCount ?? this.totalReactionCount,
interactions: interactions ?? this.interactions,
nextOffset: nextOffset ?? this.nextOffset,
);