withRequestedWriteSync method

TypesDescriptorFlags withRequestedWriteSync(
  1. bool value
)

Implementation

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