ListPage constructor

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

Implementation

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