encodeNoPaddingBytes static method

String encodeNoPaddingBytes(
  1. List<int> data, [
  2. String? customAlphabet
])

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, '');
}