Story constructor

const Story({
  1. String? name,
  2. List<Decorator> decorators = const [],
  3. int order = 0,
  4. StoryBuilder builder = AutomaticBuilder,
  5. Map<String, dynamic> params = const {},
  6. List<String> tags = const [],
})

Implementation

const Story({
  this.name,
  this.decorators = const [],
  this.order = 0,
  this.builder = AutomaticBuilder,
  this.params = const {},
  this.tags = const [],
});