TodayDrawer constructor

const TodayDrawer({
  1. Key? key,
  2. TodayButton? activatorButton,
  3. TodayLink? activatorLink,
  4. required String header,
  5. List<TodayDrawerSection>? sections,
  6. Image? image,
  7. List<TodayCard>? footerCards,
  8. List<TodayButton>? footerButtons,
  9. double drawerWidth = 284,
  10. TodayDrawerFooter footerStyle = TodayDrawerFooter.cards,
  11. Function? onShowDrawer,
  12. Function? onHideDrawer,
})

Implementation

const TodayDrawer({
  super.key,
  this.activatorButton,
  this.activatorLink,
  required this.header,
  this.sections,
  this.image,
  this.footerCards,
  this.footerButtons,
  this.drawerWidth = 284,
  this.footerStyle = TodayDrawerFooter.cards,
  this.onShowDrawer,
  this.onHideDrawer,
});