base64UrlNoPad top-level property

Codec<List<int>, String> base64UrlNoPad
final

Allows base64 encoding bytes into ASCII strings and decoding valid encodings back to bytes. This is a modified version of Base64Codec in dart:convert, using no URL-safe characters (base64Url) with no padding (the = characters at the end).

Implementation

final base64UrlNoPad = base64Url.fuse(_NoPadCodec());