PageEntry constructor

PageEntry({
  1. String? route,
  2. bool showAllToolbarActions = true,
  3. required dynamic title,
  4. dynamic subtitle,
  5. required IconData icon,
  6. required List<TabEntry> tabs,
  7. IconData? activeIcon,
  8. List<Widget>? toolbarItems,
  9. String? tooltip,
  10. String? actionTooltip,
  11. Color? backgroundColor,
  12. Widget? floatingActionButton,
  13. FloatingActionButtonLocation? floatingActionButtonLocation,
  14. String? actionTitle,
  15. void action()?,
  16. IconData? actionIcon,
  17. List<Widget>? persistentFooterButtons,
  18. bool showAppBar = true,
  19. void onSearch(
    1. String value
    )?,
})

Implementation

PageEntry({
  this.route,
  this.showAllToolbarActions = true,
  required this.title,
  this.subtitle,
  required this.icon,
  required this.tabs,
  this.activeIcon,
  this.toolbarItems,
  this.tooltip,
  this.actionTooltip,
  this.backgroundColor,
  this.floatingActionButton,
  this.floatingActionButtonLocation,
  this.actionTitle,
  this.action,
  this.actionIcon,
  this.persistentFooterButtons,
  this.showAppBar = true,
  this.onSearch,
});