withTruncate method

TypesOpenFlags withTruncate(
  1. bool value
)

Implementation

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