copyWith method

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

Implementation

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