crc16code function
Gets the CRC-16 value.
Parameters:
inputis the string to hash- The
encodingis the encoding to use. Default isinput.codeUnits - The
paramsis the parameters to use. Default: CRC16Params.ansi
Implementation
int crc16code(
String input, {
Encoding? encoding,
CRC16Params params = CRC16Params.ansi,
}) =>
CRC16(params).code(input, encoding);