Check whether a value represents a tombstone (deletion marker).
bool isTombstone(final Uint8List? value) => value != null && identical(value, _tombstone);