StoryController constructor

StoryController({
  1. required ARMOYUServices service,
  2. List<StoryList>? cachedStoryList,
  3. dynamic onStoryUpdated(
    1. List<StoryList> updatedStories
    )?,
})

Implementation

StoryController({
  required this.service,
  this.cachedStoryList,
  this.onStoryUpdated,
});