InternalLinkTypeInvoice constructor

const InternalLinkTypeInvoice({
  1. required String invoiceName,
  2. dynamic extra,
  3. int? clientId,
})

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

Implementation

const InternalLinkTypeInvoice({
  required this.invoiceName,
  this.extra,
  this.clientId,
});