NavbarItem constructor

const NavbarItem({
  1. Key? key,
  2. required String title,
  3. required VoidCallback press,
})

Implementation

const NavbarItem({
  Key? key,
  required this.title,
  required this.press,
}) : super(key: key);