computeHashFromBytes method

String computeHashFromBytes(
  1. Uint8List bytes
)

Computes SHA-256 hash from raw bytes.

Implementation

String computeHashFromBytes(Uint8List bytes) {
  return _computeHashFromBytes(bytes);
}