ListSectionHeader constructor

const ListSectionHeader({
  1. Key? key,
  2. required String label,
  3. bool hasTopBorder = true,
})

Implementation

const ListSectionHeader({
  super.key,
  required this.label,
  this.hasTopBorder = true,
});