tombstone property

  1. @override
bool tombstone
override

Checks if the current node is marked as TOMBSTONE (old deleted node).

@return true if node is a tombstone

Implementation

@override
bool get tombstone {
  try {
    return 'true' == _getSkeleton(Field.tombstone);
  } on StorageException {
    throw Exception('OOPS! Unexpected exception... please contact developer');
  }
}