parent property

Reference? parent

A reference pointing to the parent location of this reference, or null if this reference is the root.

Implementation

Reference? get parent {
  ReferencePlatform? referenceParentPlatform = _delegate.parent;

  if (referenceParentPlatform == null) {
    return null;
  }

  return Reference._(storage, referenceParentPlatform);
}