isClear method

  1. @nonVirtual
bool isClear(
  1. int n
)

Returns whether the nth bit from value is cleared.

Throws RangeError if n is out of range.

Implementation

@nonVirtual
bool isClear(int n) {
  _assertMaxBits(n, 'n');
  return value.isClear(n);
}