SectionLabel constructor

const SectionLabel({
  1. Key? key,
  2. required String title,
  3. double? largeScreenFontSize,
  4. Color? color,
  5. double? smallScreenFontSize,
})

Implementation

const SectionLabel({
  super.key,
  required this.title,
  this.largeScreenFontSize,
  this.color,
  this.smallScreenFontSize,
});