shareWithMany method

Future<EncryptedInvoice> shareWithMany(
  1. EncryptedInvoice invoice,
  2. Map<String, InvoiceShareOptions> delegates
)

Implementation

Future<EncryptedInvoice> shareWithMany(EncryptedInvoice invoice, Map<String, InvoiceShareOptions> delegates) async {
	return await CardinalSdkPlatformInterface.instance.apis.invoice.encrypted.shareWithMany(
		_sdkId,
		invoice,
		delegates,
	);
}