SectionHeader constructor

const SectionHeader({
  1. Key? key,
  2. required String title,
  3. String? subtitle,
  4. String? actionLabel,
  5. VoidCallback? onActionTap,
  6. SectionHeaderStyle style = SectionHeaderStyle.card,
})

Implementation

const SectionHeader({
  super.key,
  required this.title,
  this.subtitle,
  this.actionLabel,
  this.onActionTap,
  this.style = SectionHeaderStyle.card,
});