isParentDocumentRootBox method

bool isParentDocumentRootBox()
inherited

Implementation

@pragma('vm:prefer-inline')
bool isParentDocumentRootBox() {
  if (attachedRenderBoxModel?.parent is! RenderBoxModel) return false;
  return (attachedRenderBoxModel!.parent as RenderBoxModel).isDocumentRootBox;
}