StoryConfig constructor

StoryConfig({
  1. String? name,
  2. bool? active,
  3. int? countColumn,
  4. bool? isHorizontal,
  5. double? radius,
  6. List<Story>? data,
})

Implementation

StoryConfig({
  this.name,
  this.active,
  this.countColumn,
  this.isHorizontal,
  this.radius,
  this.data,
});