copyWith method
Implementation
StoryFullId copyWith({int? posterChatId, int? storyId}) => StoryFullId(
posterChatId: posterChatId ?? this.posterChatId,
storyId: storyId ?? this.storyId,
);
StoryFullId copyWith({int? posterChatId, int? storyId}) => StoryFullId(
posterChatId: posterChatId ?? this.posterChatId,
storyId: storyId ?? this.storyId,
);