removeFragment 抽象方法

Uri removeFragment()

创建一个不包含片段的 Uri 对象。

如果这个 Uri 对象没有片段,它将直接返回自身。

示例

final uri =
    Uri.parse('https://example.org:8080/foo/bar#frag').removeFragment();
print(uri); // https://example.org:8080/foo/bar

实现

Uri removeFragment();