remove method

void remove(
  1. int flag
)

Removes a flag from the set using bitwise operations.

flag The LMDB flag to remove from the set.

Implementation

void remove(int flag) => _flags &= ~flag;