TemplatePage constructor

const TemplatePage({
  1. Key? key,
  2. required String title,
  3. bool showTopBar = true,
  4. required List<Widget> children,
})

Implementation

const TemplatePage({
  super.key,
  required this.title,
  this.showTopBar = true,
  required this.children,
});