copyWith method

CreateInvoiceLink copyWith({
  1. InputMessageContent? invoice,
})

Implementation

CreateInvoiceLink copyWith({
  InputMessageContent? invoice,
}) =>
    CreateInvoiceLink(
      invoice: invoice ?? this.invoice,
    );