SectionHeader constructor

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

Implementation

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