DesktopHeader constructor

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

Implementation

DesktopHeader({
  Key? key,
  required this.onBackTap,
  this.title,
  this.showBackIcon = true,
  this.onFilter,
  this.actions,
  this.isTitleCentered = false,
}) : super(key: key);