saltBytes method

Uint8List? saltBytes()

Parse the salt using standard Base-64 codec

Implementation

Uint8List? saltBytes() =>
    salt == null ? null : fromBase64(salt!, padding: false);