copyWith method

GetArchivedStories copyWith({
  1. int? fromStoryId,
  2. int? limit,
})

Implementation

GetArchivedStories copyWith({
  int? fromStoryId,
  int? limit,
}) =>
    GetArchivedStories(
      fromStoryId: fromStoryId ?? this.fromStoryId,
      limit: limit ?? this.limit,
    );