copyWith method

StoryInteractions copyWith({
  1. int? totalCount,
  2. int? totalForwardCount,
  3. int? totalReactionCount,
  4. List<StoryInteraction>? interactions,
  5. String? nextOffset,
})

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