StoryNotifier constructor

StoryNotifier(
  1. List<Story> stories, {
  2. String? initial,
})

Implementation

StoryNotifier(List<Story> stories, {String? initial})
    : _stories = stories.toList(),
      _currentStoryName = initial;