TodayPage constructor

const TodayPage({
  1. Key? key,
  2. required String title,
  3. String? description,
  4. List<TodayBadge>? badges,
  5. List<TodayButton>? primaryActions,
  6. List<TodayLink>? secondaryActions,
  7. List<TodayDropdown>? tertiaryActions,
  8. TodayTab? tab,
  9. TodayBreadcrumb? breadcrumb,
  10. bool useDivider = true,
})

Implementation

const TodayPage({
  super.key,
  required this.title,
  this.description,
  this.badges,
  this.primaryActions,
  this.secondaryActions,
  this.tertiaryActions,
  this.tab,
  this.breadcrumb,
  this.useDivider = true,
});