fromBase64 method

Uint8List fromBase64()

Decodes this base64-encoded string to bytes Uint8List.

This method is the inverse of Uint8List.toBase64.

Returns the original binary data as a Uint8List. Throws a FormatException if the string is not valid base64.

Implementation

Uint8List fromBase64() => base64Decode(this);