创建一个与当前 Uri 相同但不含片段的 Uri。
Uri
如果当前 Uri 没有片段,则直接返回该 Uri。
示例
final uri = Uri.parse('https://example.org:8080/foo/bar#frag').removeFragment(); print(uri); // https://example.org:8080/foo/bar
Uri removeFragment();