pageBlockAnchor property

PageBlockAnchor? pageBlockAnchor

An invisible anchor on a page, which can be used in a URL to open the page from the specified anchor

Implementation

PageBlockAnchor? get pageBlockAnchor {
  if (this is PageBlockAnchor) {
    return this as PageBlockAnchor;
  }
  return null;
}