Bloom constructor

Bloom(
  1. int k
)

Initialize a filter.

Implementation

Bloom(this.k) {
  storage = Uint8List(bitsSize ~/ 8);
}