StoryCircle constructor

StoryCircle({
  1. List<StoryItem>? story,
  2. int? selectedIndex,
  3. TextStyle? storyCircleTextStyle,
  4. Color? highLightColor,
  5. double? circleRadius,
  6. double? circlePadding,
  7. double? borderThickness,
  8. TextStyle? fullPagetitleStyle,
  9. Color? paddingColor,
  10. bool? displayProgress,
  11. Color? fullpageVisitedColor,
  12. Color? fullpageUnvisitedColor,
  13. double? spaceBetweenStories,
  14. bool? showThumbnailOnFullPage,
  15. double? fullpageThumbnailSize,
  16. bool? showStoryNameOnFullPage,
  17. Color? storyStatusBarColor,
})

Implementation

StoryCircle({
  this.story,
  this.selectedIndex,
  this.storyCircleTextStyle,
  this.highLightColor,
  this.circleRadius,
  this.circlePadding,
  this.borderThickness,
  this.fullPagetitleStyle,
  this.paddingColor,
  this.displayProgress,
  this.fullpageVisitedColor,
  this.fullpageUnvisitedColor,
  this.spaceBetweenStories,
  this.showThumbnailOnFullPage,
  this.fullpageThumbnailSize,
  this.showStoryNameOnFullPage,
  this.storyStatusBarColor,
});