operator ~ method

BitList operator ~()

Returns the complement of the receiver.

The new BitList has all the bits of the receiver inverted.

Implementation

BitList operator ~() => BitList.of(this)..not();