setAll method

void setAll()

Sets all the bit values in the current BitArray to true.

Implementation

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