Base32Encoder constructor
Creates a new Base32Encoder instance.
Parameters:
- The
alphabetmaps each 5-bit word to its output character. - If
paddingis not null, the output is padded with it to a multiple of 8 characters.
Implementation
const Base32Encoder({
required super.alphabet,
super.padding,
}) : super(bits: 5);