PrefPage constructor

const PrefPage({
  1. Key? key,
  2. required List<Widget> children,
  3. bool cache = false,
})

Implementation

const PrefPage({
  Key? key,
  required this.children,
  bool cache = false,
}) : super(key: key, cache: cache);