b64uDecodeToString function

String b64uDecodeToString(
  1. String input
)

Decodes unpadded base64url into a UTF-8 string.

Implementation

String b64uDecodeToString(String input) => utf8.decode(b64uDecode(input));