TodayDrawerInline constructor

const TodayDrawerInline({
  1. Key? key,
  2. double? height,
  3. required String header,
  4. List<TodayDrawerSection>? sections,
  5. Image? image,
  6. List<TodayCard>? footerCards,
  7. List<TodayButton>? footerButtons,
  8. TodayDrawerFooter footerStyle = TodayDrawerFooter.cards,
})

Implementation

const TodayDrawerInline({
  super.key,
  this.height,
  required this.header,
  this.sections,
  this.image,
  this.footerCards,
  this.footerButtons,
  this.footerStyle = TodayDrawerFooter.cards,
});