hashBytes method

Uint8List? hashBytes()

Parse the hash using standard Base-64 codec

Implementation

Uint8List? hashBytes() =>
    hash == null ? null : fromBase64(hash!, padding: false);