hash property

String? hash

The hash of the url (a.k.a fragment)

This can be used with VAnchor to easily create anchors

Implementation

String? get hash =>
    url != null ? Uri.decodeComponent(Uri.parse(url!).fragment) : null;