CustomStorybook constructor

const CustomStorybook({
  1. Key? key,
  2. required List<Story> children,
  3. StoryWrapperBuilder? storyWrapperBuilder,
  4. required WidgetBuilder builder,
})

Implementation

const CustomStorybook({
  Key? key,
  required this.children,
  this.storyWrapperBuilder,
  required this.builder,
}) : super(key: key);