class MyBreadcrumbItem { final String name; final String? route; final bool active; MyBreadcrumbItem({required this.name, this.route, this.active = false}); }