add method

void add(
  1. int flag
)

Adds a flag to the set using bitwise OR operation.

flag The LMDB flag to add (e.g., MDB_RDONLY, MDB_NOSUBDIR).

Implementation

void add(int flag) => _flags |= flag;