base64UrlDecoded property

Uint8List get base64UrlDecoded

Converts to bytes with base64Url.decoder.

Implementation

Uint8List get base64UrlDecoded {
  return base64Url.decoder.convert(this);
}