isFullyLinked property
Returns true if the document is fully linked
Implementation
bool get isFullyLinked {
return _included.isEmpty ||
_included.every((res) =>
data.identifies(res) ||
_included
.any((another) => another != res && another.identifies(res)));
}