TodayDrawerOverlay constructor

const TodayDrawerOverlay({
  1. Key? key,
  2. required BuildContext parentContext,
  3. required String header,
  4. List<TodayDrawerSection>? sections,
  5. Image? image,
  6. List<TodayCard>? footerCards,
  7. List<TodayButton>? footerButtons,
  8. double drawerWidth = 284,
  9. required TodayDrawerFooter footerStyle,
  10. required Function onDismissed,
})

Implementation

const TodayDrawerOverlay({
  super.key,
  required this.parentContext,
  required this.header,
  this.sections,
  this.image,
  this.footerCards,
  this.footerButtons,
  this.drawerWidth = 284,
  required this.footerStyle,
  required this.onDismissed,
});