class ListSection<Item> { const ListSection({required this.items}); final List<Item> items; }