crc64code function

int crc64code(
  1. String input, [
  2. Encoding? encoding
])

Gets the CRC-64 value of a String.

Parameters:

  • input is the string to hash
  • The encoding is the encoding to use. Default is input.codeUnits

Implementation

int crc64code(String input, [Encoding? encoding]) {
  return crc64.string(input, encoding).number();
}