SectionHeader constructor

const SectionHeader({
  1. dynamic key,
  2. required String title,
  3. dynamic onTapSeeAll,
  4. bool showSectionBg = true,
  5. bool isShowSeeAllButton = false,
})

Implementation

const SectionHeader({
  super.key,
  required this.title,
  this.onTapSeeAll,
  this.showSectionBg = true,
  this.isShowSeeAllButton = false,
});