internalLinkTypeBackground property

InternalLinkTypeBackground? internalLinkTypeBackground

The link is a link to a background. Call searchBackground with the given background name to process the link

Implementation

InternalLinkTypeBackground? get internalLinkTypeBackground {
  if (this is InternalLinkTypeBackground) {
    return this as InternalLinkTypeBackground;
  }
  return null;
}