encodeNoPaddingBytes static method
Encode the provided List
Implementation
static String encodeNoPaddingBytes(List<int> data, [String? customAlphabet]) {
/// Encode the input bytes and then remove any padding characters.
return encodeBytes(data, customAlphabet)
.replaceAll(_Base32Const.paddingChar, '');
}