FoundStories constructor

FoundStories({
  1. required int totalCount,
  2. required List<Story> stories,
  3. required String nextOffset,
})

Implementation

FoundStories({
  required this.totalCount,
  required this.stories,
  required this.nextOffset,
});