FespNavItemData constructor

FespNavItemData({
  1. required IconData icon,
  2. required IconData activeIcon,
  3. required String title,
  4. required String path,
  5. required String name,
  6. required Widget builder(
    1. BuildContext context,
    2. GoRouterState state
    ),
  7. String? label,
  8. List<FespNavItemData>? routes,
  9. bool isEnable = true,
})

Implementation

FespNavItemData({
  required this.icon,
  required this.activeIcon,
  required this.title,
  required this.path,
  required this.name,
  required this.builder,
  this.label,
  this.routes,
  this.isEnable = true,
});