DesktopHeader constructor

DesktopHeader({
  1. required Function onBackTap,
  2. String? title,
  3. bool showBackIcon = true,
  4. ValueChanged<bool>? onFilter,
  5. List<Widget>? actions,
  6. bool isTitleCentered = false,
})

Implementation

DesktopHeader(
    {required this.onBackTap,
    this.title,
    this.showBackIcon = true,
    this.onFilter,
    this.actions,
    this.isTitleCentered = false});