Encodes bytes as URL-safe base64 with all = padding removed.
bytes
=
String base64UrlNoPadding(List<int> bytes) { return base64UrlEncode(bytes).replaceAll('=', ''); }