isTombstone function

bool isTombstone(
  1. Uint8List? value
)

Check whether a value represents a tombstone (deletion marker).

Implementation

bool isTombstone(final Uint8List? value) =>
    value != null && identical(value, _tombstone);