AlphabetDecoder constructor
Creates a new AlphabetDecoder instance.
Parameters:
bitsis bit-length of a single word in the output- The
alphabetcontains mapping from input word to output word. - If
paddingis not null, conversion will stop immediately upon encountering this character.
Implementation
const AlphabetDecoder({
required super.bits,
required this.alphabet,
this.padding,
});