copyWith method
SetStoryReaction
copyWith({
- int? storyPosterChatId,
- int? storyId,
- ReactionType? reactionType,
- bool? updateRecentReactions,
Implementation
SetStoryReaction copyWith({
int? storyPosterChatId,
int? storyId,
ReactionType? reactionType,
bool? updateRecentReactions,
}) => SetStoryReaction(
storyPosterChatId: storyPosterChatId ?? this.storyPosterChatId,
storyId: storyId ?? this.storyId,
reactionType: reactionType ?? this.reactionType,
updateRecentReactions: updateRecentReactions ?? this.updateRecentReactions,
);