hwGetHash function
Implementation
String? hwGetHash() {
final hash = window.location.hash;
return hash.isEmpty ? null : hash.substring(1);
}
String? hwGetHash() {
final hash = window.location.hash;
return hash.isEmpty ? null : hash.substring(1);
}