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