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