Assume that I have to hide a few essential parameters which are sent through go_router's query params like - "
GoRouter.of(context).pushNamed(route, queryParameters: { 'id': 'hhhhhh', 'key': 'yyyyy' });
I don't want to let the user see the Id, is that possible in Flutter?
I tried the Uri.encodeQueryParameters() function which is present in dart:convert
but it didn't work.