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