clearAll method

void clearAll()

Sets all of the bits in the current BitArray to false.

Implementation

void clearAll() {
  for (var i = 0; i < _data.length; i++) {
    _data[i] = 0;
  }
}