clear method

void clear()

Implementation

void clear() {
  for (var i = 0; i < _bitmap.length; i++) {
    _bitmap[i] = false;
  }
}