StoriesView constructor
const
StoriesView({
- required VoidCallback? onPageLimit,
- ValueNotifier<
bool> ? isWatchedController, - required int storyLength,
- required int pageIndex,
- required int pageLength,
- Key? key,
Implementation
const StoriesView(
{
required this.onPageLimit,
this.isWatchedController,
required this.storyLength,
required this.pageIndex,
required this.pageLength,
Key? key})
: super(key: key);