internalLinkTypeInstantView property

InternalLinkTypeInstantView? internalLinkTypeInstantView

The link must be opened in an Instant View. Call getWebPageInstantView with the given URL to process the link

Implementation

InternalLinkTypeInstantView? get internalLinkTypeInstantView {
  if (this is InternalLinkTypeInstantView) {
    return this as InternalLinkTypeInstantView;
  }
  return null;
}