StoriesView constructor

const StoriesView({
  1. required VoidCallback? onPageLimit,
  2. ValueNotifier<bool>? isWatchedController,
  3. required int storyLength,
  4. required int pageIndex,
  5. required int pageLength,
  6. Key? key,
})

Implementation

const StoriesView(
    {
    required this.onPageLimit,
    this.isWatchedController,
    required this.storyLength,
    required this.pageIndex,
    required this.pageLength,
    Key? key})
    : super(key: key);