removeFragment 抽象方法

Uri removeFragment()

创建一个与当前 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();