copyWith method

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

Implementation

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