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

  final List<Item> items;
}