SectionHeader constructor

const SectionHeader({
  1. Key? key,
  2. required String title,
  3. String? subtitle,
  4. String? actionTitle,
  5. VoidCallback? onActionTap,
})

Implementation

const SectionHeader({
  super.key,
  required this.title,
  this.subtitle,
  this.actionTitle,
  this.onActionTap,
});