StoriesData constructor

StoriesData({
  1. required GetStories data,
  2. required String token,
  3. required String nudgeId,
  4. int? storyIndex,
  5. int? slideIndex,
  6. bool deepLinkMode = false,
  7. String? deepLinkType,
  8. StoriesRepo? storiesRepo,
})

Implementation

StoriesData({
  required this.data,
  required this.token,
  required this.nudgeId,
  this.storyIndex,
  this.slideIndex,
  this.deepLinkMode = false,
  this.deepLinkType,
  this.storiesRepo,
});