withExclusive method

TypesOpenFlags withExclusive(
  1. bool value
)

Implementation

TypesOpenFlags withExclusive(bool value) {
  return TypesOpenFlags(value ? representation | 0x4 : representation & ~0x4);
}