FullPageView constructor

FullPageView({
  1. Key? key,
  2. required List<StoryItem>? storiesMapList,
  3. required int? storyNumber,
  4. TextStyle? fullPagetitleStyle,
  5. bool? displayProgress,
  6. Color? fullpageVisitedColor,
  7. Color? fullpageUnvisitedColor,
  8. bool? showThumbnailOnFullPage,
  9. double? fullpageThumbnailSize,
  10. bool? showStoryNameOnFullPage,
  11. Color? storyStatusBarColor,
})

Implementation

FullPageView({
  Key? key,
  required this.storiesMapList,
  required this.storyNumber,
  this.fullPagetitleStyle,
  this.displayProgress,
  this.fullpageVisitedColor,
  this.fullpageUnvisitedColor,
  this.showThumbnailOnFullPage,
  this.fullpageThumbnailSize,
  this.showStoryNameOnFullPage,
  this.storyStatusBarColor,
}) : super(key: key);