computeByteRangeHashBase64 static method
Computes a Base64 hash for the content described by byteRange.
Implementation
static String computeByteRangeHashBase64(
Uint8List pdfBytes,
List<int> byteRange,
) {
return base64.encode(computeByteRangeDigest(pdfBytes, byteRange));
}