GetArchivedStories constructor

const GetArchivedStories({
  1. required int fromStoryId,
  2. required int limit,
})

Returns the list of all stories of the current user. The stories are returned in a reverse chronological order (i.e., in order of decreasing story_id).. For optimal performance, the number of returned stories is chosen by TDLib

Implementation

const GetArchivedStories({
  required this.fromStoryId,
  required this.limit,
});