SinglePage constructor

const SinglePage({
  1. Key? key,
  2. required List<Widget> children,
  3. required Footer footer,
  4. required AppAttributes appAttributes,
  5. required bool showMediumSizeLayout,
  6. required bool showLargeSizeLayout,
})

Implementation

const SinglePage({
  super.key,
  required this.children,
  required this.footer,
  required this.appAttributes,
  required this.showMediumSizeLayout,
  required this.showLargeSizeLayout,
});