xxh64sum method
Gets the 64-bit xxHash hash of a String in hexadecimal.
Parameters:
- If no
encoding
is defined, thecodeUnits
is used to get the bytes.
Implementation
String xxh64sum([Encoding? encoding]) {
return xxh64.string(this, encoding).hex();
}