xxh64sum method

String xxh64sum([
  1. Encoding? encoding
])

Gets the 64-bit xxHash hash of a String in hexadecimal.

Parameters:

  • If no encoding is defined, the codeUnits is used to get the bytes.

Implementation

String xxh64sum([Encoding? encoding]) {
  return xxh64.string(this, encoding).hex();
}