Base32Decoder constructor
Creates a new Base32Decoder instance.
Parameters:
- The
alphabetmaps each input character to its 5-bit word. - If
paddingis not null, trailing occurrences of it are stripped before decoding.
Implementation
const Base32Decoder({
required super.alphabet,
super.padding,
}) : super(bits: 5);