crc32code function
Gets the CRC-32 value.
Parameters:
inputis the string to hash- The
encodingis the encoding to use. Default isinput.codeUnits - The
paramsis the parameters to use. Default: CRC32Params.ieee
Implementation
int crc32code(
String input, {
Encoding? encoding,
CRC32Params params = CRC32Params.ieee,
}) =>
CRC32(params).code(input, encoding);