copyWith method

LinkPreviewTypeStory copyWith({
  1. int? storyPosterChatId,
  2. int? storyId,
})

Implementation

LinkPreviewTypeStory copyWith({int? storyPosterChatId, int? storyId}) =>
    LinkPreviewTypeStory(
      storyPosterChatId: storyPosterChatId ?? this.storyPosterChatId,
      storyId: storyId ?? this.storyId,
    );