Closed
Description
Below sample code is auto replacing '+' character in a query parameter with space, when fetching value using queryParameters.
Uri uri = Uri.parse('https://test.com/parse?code=sf+sf+/fd3' );
print(uri.query); //print - code=sf+sf+/fd3
print(uri.queryParameters['code']); //prints - sf sf /fd3
How to solve this?