xxh64code method

int xxh64code([
  1. Encoding? encoding
])

Gets the 64-bit xxHash value of a String. . Parameters:

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

Implementation

int xxh64code([Encoding? encoding]) {
  return xxh64.string(this, encoding).number();
}