NavigatorControl constructor

NavigatorControl({
  1. NavItem? key,
})

Default constructor

Implementation

NavigatorControl({NavItem? key}) {
  menu = key ??
      NavItem(
        key: UniqueKey(),
      );
}