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