NavItem constructor

const NavItem(
  1. {Key? key,
  2. String? title,
  3. GestureTapCallback? onPress,
  4. IconData? icon,
  5. bool selected = false,
  6. WidgetBuilder? builder}
)

Implementation

const NavItem(
    {super.key,
    this.title,
    this.onPress,
    this.icon,
    this.selected = false,
    WidgetBuilder? builder});