copyWith method
Implementation
ToggleStoryIsPostedToChatPage copyWith({
int? storyPosterChatId,
int? storyId,
bool? isPostedToChatPage,
}) => ToggleStoryIsPostedToChatPage(
storyPosterChatId: storyPosterChatId ?? this.storyPosterChatId,
storyId: storyId ?? this.storyId,
isPostedToChatPage: isPostedToChatPage ?? this.isPostedToChatPage,
);