fragment property

String fragment

The URI fragment or hash.

Implementation

String get fragment => _uri.fragment;
void fragment=(String fragment)

Implementation

set fragment(String fragment) {
  _uri = _uri.replace(fragment: fragment);
}