getMetadataHash method
Implementation
String getMetadataHash(String input) {
String? hash = _hashHistory[input];
if (hash != null) {
return hash;
} else {
hash = LocalityAuth.hashPassword(input);
_hashHistory[input] = hash;
}
return hash;
}