hash property
Implementation
String get hash {
final uri = _uri;
if (uri != null && uri.hasFragment) {
return '#${uri.fragment}';
}
return '';
}
Implementation
set hash(String value) {
_updateUri(_uri?.replace(
fragment: value.startsWith('#') ? value.substring(1) : value));
}