StoryboardApp constructor

StoryboardApp(
  1. List<Story> stories, {
  2. ThemeData? theme,
})

Creates a new Storyboard App.

  • stories defines the list of stories that will be combined into a storyboard.

Implementation

StoryboardApp(List<Story> stories, {ThemeData? theme})
    : super(home: Storyboard(stories), theme: theme);