copyWith method

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

Implementation

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