builder method
- BuildContext context,
- GoRouterState state,
override
builder is used to build the widget
Implementation
@override
Widget builder(
BuildContext context,
GoRouterState state,
StatefulNavigationShell navigationShell,
) {
return ListenerWidget(
child: AppNavigationBar(
navigationShell: navigationShell,
),
);
}