PageListPage constructor

const PageListPage({
  1. Key? key,
  2. required String title,
  3. required PageListController controller,
  4. String? searchHintText,
})

Implementation

const PageListPage({
  Key? key,
  required this.title,
  required this.controller,
  this.searchHintText,
}) : super(key: key);