Config constructor

const Config({
  1. bool? enabled,
  2. StoryExpansion? expansion,
  3. int? maxStories,
  4. List<Object?>? storyValues,
  5. bool allValues = false,
})

Creates a Widgetbook configuration overlay.

Implementation

const Config({
  this.enabled,
  this.expansion,
  this.maxStories,
  this.storyValues,
  this.allValues = false,
});