HeaderView constructor

const HeaderView({
  1. Key? key,
  2. String? headerText,
  3. bool showSeeAll = false,
  4. VoidCallback? callback,
})

Implementation

const HeaderView({
  super.key,
  this.headerText,
  this.showSeeAll = false,
  this.callback,
});