AppWebHeader constructor

const AppWebHeader({
  1. Key? key,
  2. required String moduleTitle,
  3. String moduleSubtitle = 'Dashboard',
  4. String searchHint = 'Search...',
  5. Widget? breadcrumb,
  6. VoidCallback? onHomeCallback,
  7. VoidCallback? onSearchTap,
  8. bool showSearch = true,
})

Implementation

const AppWebHeader({
  super.key,
  required this.moduleTitle,
  this.moduleSubtitle = 'Dashboard',
  this.searchHint = 'Search...',
  this.breadcrumb,
  this.onHomeCallback,
  this.onSearchTap,
  this.showSearch = true,
});