stripUriParams function

String stripUriParams(
  1. Uri uri
)

Implementation

String stripUriParams(Uri uri) {
  return "${uri.scheme}://${uri.authority}${uri.path}";
}