unsigned static method
Computes a CRC32 value for the given input.
The return value is an unsigned 32-bit integer.
Implementation
static int unsigned(List<int> input, [int crc = 0]) {
var value = _compute(input, crc);
return value & 0xffffffff;
}