StoryCollection constructor

const StoryCollection({
  1. Key? key,
  2. required List<StoryCard?> listStory,
  3. int? pageCurrent,
  4. bool? showChat,
  5. bool? isHorizontal = true,
  6. bool isTab = false,
})

Implementation

const StoryCollection({
  super.key,
  required this.listStory,
  this.pageCurrent,
  this.showChat,
  this.isHorizontal = true,
  this.isTab = false,
});