The following uri created:
final _url = "https://example.com/api/";
final _uri = Uri(path: _url, queryParameters: _params);
Results in http%3A//example.com/api/+{params...}
I have tried escaping by \: and other methods but no luck :/
This problem only happens when run through Uri, I was unable to find any resources online to resolve this issue.
