internalLinkTypeInvoice property

InternalLinkTypeInvoice? internalLinkTypeInvoice

The link is a link to an invoice. Call getPaymentForm with the given invoice name to process the link

Implementation

InternalLinkTypeInvoice? get internalLinkTypeInvoice {
  if (this is InternalLinkTypeInvoice) {
    return this as InternalLinkTypeInvoice;
  }
  return null;
}