ListPage constructor

const ListPage({
  1. Key? key,
  2. required List<Page> children,
})

Implementation

const ListPage({
  super.key,
  required this.children,
});