handleRoute function

String handleRoute(
  1. BuildContext context
)

Implementation

String handleRoute(BuildContext context) {
  final String routeName = GoRouterState.of(context).fullPath ?? "";
  return "$routeName${_handleQueryParams(context)}";
}