hash property

String get hash
inherited

Implementation

String get hash {
  final uri = _uri;
  if (uri != null && uri.hasFragment) {
    return '#${uri.fragment}';
  }
  return '';
}
set hash (String value)
inherited

Implementation

set hash(String value) {
  _updateUri(_uri?.replace(
      fragment: value.startsWith('#') ? value.substring(1) : value));
}