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