getAdler32Uint8List function
Returns the Adler-32 checksum of bs as a 4-byte Uint8List (big-endian).
See also: getAdler32.
Implementation
Uint8List getAdler32Uint8List(List<int> bs) {
final hash = getAdler32(bs);
return _uint32ToBytesBE(hash);
}