withMutateDirectory method

TypesDescriptorFlags withMutateDirectory(
  1. bool value
)

Implementation

TypesDescriptorFlags withMutateDirectory(bool value) {
  return TypesDescriptorFlags(
    value ? representation | 0x20 : representation & ~0x20,
  );
}