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