HeaderWidget constructor

const HeaderWidget({
  1. Key? key,
  2. required String headerTitle,
  3. required Color backgroundColor,
  4. required TextStyle headerStyle,
  5. Widget? suffixWidget,
  6. bool? centerHeader,
  7. double? headerHeight,
})

Implementation

const HeaderWidget(
    {super.key,
    required this.headerTitle,
    required this.backgroundColor,
    required this.headerStyle,
    this.suffixWidget,
    this.centerHeader,
    this.headerHeight});