copyWith method

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

Implementation

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