ListSection constructor

const ListSection({
  1. Key? key,
  2. required String label,
  3. List<Widget> children = const [],
  4. bool hasTopBorder = true,
})

Implementation

const ListSection({
  super.key,
  required this.label,
  this.children = const [],
  this.hasTopBorder = true,
});