copyWith method

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

Implementation

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