copyWith method

GetChatStoryInteractions copyWith({
  1. int? storyPosterChatId,
  2. int? storyId,
  3. ReactionType? reactionType,
  4. bool? preferForwards,
  5. String? offset,
  6. int? limit,
})

Implementation

GetChatStoryInteractions copyWith({
  int? storyPosterChatId,
  int? storyId,
  ReactionType? reactionType,
  bool? preferForwards,
  String? offset,
  int? limit,
}) => GetChatStoryInteractions(
  storyPosterChatId: storyPosterChatId ?? this.storyPosterChatId,
  storyId: storyId ?? this.storyId,
  reactionType: reactionType ?? this.reactionType,
  preferForwards: preferForwards ?? this.preferForwards,
  offset: offset ?? this.offset,
  limit: limit ?? this.limit,
);