ByteEncoder constructor

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

Creates a new ByteEncoder instance.

Parameters:

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

Implementation

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