add method

dynamic add(
  1. Uint8List element
)

Implementation

add(Uint8List element) {
  _distribute(element, (index, bit) {

    storage[index] |= bit;

    return true;
  });
}