NeoSectionHeader constructor

const NeoSectionHeader({
  1. Key? key,
  2. required String title,
  3. String? subtitle,
  4. String? eyebrow,
  5. Widget? action,
})

Implementation

const NeoSectionHeader({
  super.key,
  required this.title,
  this.subtitle,
  this.eyebrow,
  this.action,
});