Customizations constructor

Customizations({
  1. required List<TagHandler> customComponents,
  2. Widget headerBuilder()?,
  3. Widget footerBuilder()?,
  4. bool? hideFooter,
  5. bool? hideHeader,
  6. Widget containerBuilder(
    1. BuildContext context,
    2. Widget pageContent
    )?,
  7. StyledTypography? typography,
  8. ListMarker? listMarker,
})

Implementation

Customizations({
  required this.customComponents,
  super.headerBuilder,
  super.footerBuilder,
  super.hideFooter,
  super.hideHeader,
  super.containerBuilder,
  super.typography,
  super.listMarker,
});