getAdler32Hex function
Returns the Adler-32 checksum of bs as a lowercase hexadecimal string.
The output is an 8-character hex representation (big-endian).
See also: getAdler32Uint8List, getAdler32.
Implementation
String getAdler32Hex(List<int> bs) {
final hash = getAdler32Uint8List(bs);
return _hexEncode(hash);
}