withCreate method

TypesOpenFlags withCreate(
  1. bool value
)

Implementation

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