setValue method

void setValue(
  1. int num,
  2. int szx, {
  3. required bool m,
})

Sets block params. num - Block number szx - Block size m - More flag

Implementation

void setValue(final int num, final int szx, {required final bool m}) {
  intValue = _encode(num, szx, m);
}