SafaehSectionHeader constructor

const SafaehSectionHeader({
  1. Key? key,
  2. required String label,
  3. String? subtitle,
  4. Widget? trailing,
  5. Color? barColor,
  6. Color? labelColor,
  7. bool compact = false,
})

Implementation

const SafaehSectionHeader({
  super.key,
  required this.label,
  this.subtitle,
  this.trailing,
  this.barColor,
  this.labelColor,
  this.compact = false,
});