PageHeaderWidget constructor

const PageHeaderWidget({
  1. dynamic key,
  2. required String title,
  3. dynamic sectionDecoration,
  4. bool? centerTitle = false,
  5. double expandedHeight = 120,
  6. List? actions,
  7. dynamic expandedContent,
})

Implementation

const PageHeaderWidget({
  super.key,
  required this.title,
  this.sectionDecoration,
  this.centerTitle = false,
  this.expandedHeight = 120,
  this.actions,
  this.expandedContent,
});