base64UrlDecode method

Uint8List base64UrlDecode()

Converts this base64url-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 base64UrlDecode() => base64Url.decode(this);