withDataIntegritySync method

TypesDescriptorFlags withDataIntegritySync(
  1. bool value
)

Implementation

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