internalLinkTypeProxy property

InternalLinkTypeProxy? internalLinkTypeProxy

The link is a link to a proxy. Call addProxy with the given parameters to process the link and add the proxy

Implementation

InternalLinkTypeProxy? get internalLinkTypeProxy {
  if (this is InternalLinkTypeProxy) {
    return this as InternalLinkTypeProxy;
  }
  return null;
}