ListingPannel constructor

ListingPannel({
  1. Key? key,
  2. required List<Story> stories,
  3. required ValueNotifier<Story?> controller,
})

Implementation

ListingPannel({
  Key? key,
  required List<Story> stories,
  required this.controller,
})  : stories = stories.groupListsBy((e) => e.section),
      super(key: key);