hash property

  1. @override
String? hash
inherited

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

This can be used with VAnchor to easily create anchors

Implementation

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