shareWith method

Future<DecryptedInvoice> shareWith(
  1. String delegateId,
  2. DecryptedInvoice invoice, {
  3. InvoiceShareOptions? options,
})

Implementation

Future<DecryptedInvoice> shareWith(String delegateId, DecryptedInvoice invoice, { InvoiceShareOptions? options }) async {
	return await CardinalSdkPlatformInterface.instance.apis.invoice.shareWith(
		_sdkId,
		delegateId,
		invoice,
		options,
	);
}