SinglePage constructor

const SinglePage({
  1. dynamic key,
  2. required List children,
  3. required dynamic footer,
  4. required dynamic 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,
});