shareWith method

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

Implementation

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