PrefPage constructor

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

Implementation

const PrefPage({
  super.key,
  required this.children,
  super.cache = false,
  this.scrollable = true,
});