FullPageView constructor

const 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,
  12. Function? onPageChanged,
  13. Duration? autoPlayDuration,
})

Implementation

const 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,
  this.onPageChanged,
  this.autoPlayDuration,
}) : super(key: key);