listInvoicesByContactIds method

Future<List<EncryptedInvoice>> listInvoicesByContactIds(
  1. List<String> contactIds
)

Implementation

Future<List<EncryptedInvoice>> listInvoicesByContactIds(List<String> contactIds) async {
	return await CardinalSdkPlatformInterface.instance.apis.invoice.encrypted.listInvoicesByContactIds(
		_sdkId,
		contactIds,
	);
}