SectionTitleWidget constructor

const SectionTitleWidget({
  1. required String title,
  2. VoidCallback? onTap,
  3. Key? key,
})

Implementation

const SectionTitleWidget({
  required this.title,
  this.onTap,
  super.key,
});