ByteDecoder constructor

const ByteDecoder({
  1. required int bits,
})

Creates a new ByteDecoder instance.

Parameters:

  • bits is bit-length of a single word in the output

Implementation

const ByteDecoder({
  required this.bits,
});