hash property

String get hash

Returns the Location object's URL's fragment (includes leading "#" if non-empty).

Can be set, to navigate to the same URL with a changed fragment (ignores leading "#").

MDN Reference

Implementation

_i2.String get hash => _i4.getProperty(
      this,
      'hash',
    );
set hash (String value)

Implementation

set hash(_i2.String value) {
  _i4.setProperty(
    this,
    'hash',
    value,
  );
}