unusedBits property

int unusedBits

Implementation

int get unusedBits => _unusedBits;
void unusedBits=(int value)

Implementation

set unusedBits(int value) {
  if (value < 0) {
    throw Exception('unused bits cannot be negative');
  } else if (value > 7) {
    throw Exception('unused bits cannot be larger than 7');
  }

  _unusedBits = value;
}