base64Decode method

Uint8List base64Decode()

Converts this base64-encoded string into a list of bytes.

It decodes using both the base64 and base64url alphabets, does not allow invalid characters and requires padding.

Implementation

Uint8List base64Decode() => base64.decode(this);