DDSDrawer constructor

const DDSDrawer({
  1. Key? key,
  2. Widget? contents,
  3. required DrawerVariant variant,
  4. Widget? header,
  5. HeaderContents? headerContents,
  6. Widget? footer,
  7. FooterContents? footerContents,
  8. double? width,
  9. Color? contentColor,
  10. Color? footerColor,
  11. Color? headerColor,
})

Implementation

const DDSDrawer({
  Key? key,
  this.contents,
  required this.variant,
  this.header,
  this.headerContents,
  this.footer,
  this.footerContents,
  this.width,
  this.contentColor,
  this.footerColor,
  this.headerColor,
}) : super(key: key);