SectionTitle constructor

const SectionTitle({
  1. Key? key,
  2. required String title,
  3. bool showPadding = true,
})

Implementation

const SectionTitle({
  super.key,
  required this.title,
  this.showPadding = true,
});